installed.json 145 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071
  1. {
  2. "packages": [
  3. {
  4. "name": "doctrine/instantiator",
  5. "version": "1.4.0",
  6. "version_normalized": "1.4.0.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/doctrine/instantiator.git",
  10. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  15. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "php": "^7.1 || ^8.0"
  20. },
  21. "require-dev": {
  22. "doctrine/coding-standard": "^8.0",
  23. "ext-pdo": "*",
  24. "ext-phar": "*",
  25. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  26. "phpstan/phpstan": "^0.12",
  27. "phpstan/phpstan-phpunit": "^0.12",
  28. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  29. },
  30. "time": "2020-11-10T18:47:58+00:00",
  31. "type": "library",
  32. "installation-source": "dist",
  33. "autoload": {
  34. "psr-4": {
  35. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  36. }
  37. },
  38. "notification-url": "https://packagist.org/downloads/",
  39. "license": [
  40. "MIT"
  41. ],
  42. "authors": [
  43. {
  44. "name": "Marco Pivetta",
  45. "email": "ocramius@gmail.com",
  46. "homepage": "https://ocramius.github.io/"
  47. }
  48. ],
  49. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  50. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  51. "keywords": [
  52. "constructor",
  53. "instantiate"
  54. ],
  55. "support": {
  56. "issues": "https://github.com/doctrine/instantiator/issues",
  57. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  58. },
  59. "funding": [
  60. {
  61. "url": "https://www.doctrine-project.org/sponsorship.html",
  62. "type": "custom"
  63. },
  64. {
  65. "url": "https://www.patreon.com/phpdoctrine",
  66. "type": "patreon"
  67. },
  68. {
  69. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  70. "type": "tidelift"
  71. }
  72. ],
  73. "install-path": "../doctrine/instantiator"
  74. },
  75. {
  76. "name": "doctrine/lexer",
  77. "version": "1.2.2",
  78. "version_normalized": "1.2.2.0",
  79. "source": {
  80. "type": "git",
  81. "url": "https://github.com/doctrine/lexer.git",
  82. "reference": "9c50f840f257bbb941e6f4a0e94ccf5db5c3f76c"
  83. },
  84. "dist": {
  85. "type": "zip",
  86. "url": "https://api.github.com/repos/doctrine/lexer/zipball/9c50f840f257bbb941e6f4a0e94ccf5db5c3f76c",
  87. "reference": "9c50f840f257bbb941e6f4a0e94ccf5db5c3f76c",
  88. "shasum": ""
  89. },
  90. "require": {
  91. "php": "^7.1 || ^8.0"
  92. },
  93. "require-dev": {
  94. "doctrine/coding-standard": "^9.0",
  95. "phpstan/phpstan": "1.3",
  96. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  97. "vimeo/psalm": "^4.11"
  98. },
  99. "time": "2022-01-12T08:27:12+00:00",
  100. "type": "library",
  101. "installation-source": "dist",
  102. "autoload": {
  103. "psr-4": {
  104. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Guilherme Blanco",
  114. "email": "guilhermeblanco@gmail.com"
  115. },
  116. {
  117. "name": "Roman Borschel",
  118. "email": "roman@code-factory.org"
  119. },
  120. {
  121. "name": "Johannes Schmitt",
  122. "email": "schmittjoh@gmail.com"
  123. }
  124. ],
  125. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  126. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  127. "keywords": [
  128. "annotations",
  129. "docblock",
  130. "lexer",
  131. "parser",
  132. "php"
  133. ],
  134. "support": {
  135. "issues": "https://github.com/doctrine/lexer/issues",
  136. "source": "https://github.com/doctrine/lexer/tree/1.2.2"
  137. },
  138. "funding": [
  139. {
  140. "url": "https://www.doctrine-project.org/sponsorship.html",
  141. "type": "custom"
  142. },
  143. {
  144. "url": "https://www.patreon.com/phpdoctrine",
  145. "type": "patreon"
  146. },
  147. {
  148. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  149. "type": "tidelift"
  150. }
  151. ],
  152. "install-path": "../doctrine/lexer"
  153. },
  154. {
  155. "name": "dragonmantank/cron-expression",
  156. "version": "v2.3.1",
  157. "version_normalized": "2.3.1.0",
  158. "source": {
  159. "type": "git",
  160. "url": "https://github.com/dragonmantank/cron-expression.git",
  161. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  162. },
  163. "dist": {
  164. "type": "zip",
  165. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  166. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  167. "shasum": ""
  168. },
  169. "require": {
  170. "php": "^7.0|^8.0"
  171. },
  172. "require-dev": {
  173. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  174. },
  175. "time": "2020-10-13T00:52:37+00:00",
  176. "type": "library",
  177. "extra": {
  178. "branch-alias": {
  179. "dev-master": "2.3-dev"
  180. }
  181. },
  182. "installation-source": "dist",
  183. "autoload": {
  184. "psr-4": {
  185. "Cron\\": "src/Cron/"
  186. }
  187. },
  188. "notification-url": "https://packagist.org/downloads/",
  189. "license": [
  190. "MIT"
  191. ],
  192. "authors": [
  193. {
  194. "name": "Michael Dowling",
  195. "email": "mtdowling@gmail.com",
  196. "homepage": "https://github.com/mtdowling"
  197. },
  198. {
  199. "name": "Chris Tankersley",
  200. "email": "chris@ctankersley.com",
  201. "homepage": "https://github.com/dragonmantank"
  202. }
  203. ],
  204. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  205. "keywords": [
  206. "cron",
  207. "schedule"
  208. ],
  209. "support": {
  210. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  211. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  212. },
  213. "funding": [
  214. {
  215. "url": "https://github.com/dragonmantank",
  216. "type": "github"
  217. }
  218. ],
  219. "install-path": "../dragonmantank/cron-expression"
  220. },
  221. {
  222. "name": "easyswoole/annotation",
  223. "version": "2.0.3",
  224. "version_normalized": "2.0.3.0",
  225. "source": {
  226. "type": "git",
  227. "url": "https://github.com/easy-swoole/annotation.git",
  228. "reference": "de43d3ed7e7b8f54183d12134b5cbd96ce07d1e3"
  229. },
  230. "dist": {
  231. "type": "zip",
  232. "url": "https://api.github.com/repos/easy-swoole/annotation/zipball/de43d3ed7e7b8f54183d12134b5cbd96ce07d1e3",
  233. "reference": "de43d3ed7e7b8f54183d12134b5cbd96ce07d1e3",
  234. "shasum": ""
  235. },
  236. "require": {
  237. "easyswoole/doctrine-annotations": "^1.0",
  238. "easyswoole/spl": "^1.1",
  239. "php": ">=7.1.0"
  240. },
  241. "require-dev": {
  242. "easyswoole/phpunit": "^1.0",
  243. "easyswoole/swoole-ide-helper": "^1.2"
  244. },
  245. "time": "2020-08-28T03:22:36+00:00",
  246. "type": "library",
  247. "installation-source": "dist",
  248. "autoload": {
  249. "psr-4": {
  250. "EasySwoole\\Annotation\\": "src/"
  251. }
  252. },
  253. "notification-url": "https://packagist.org/downloads/",
  254. "license": [
  255. "Apache-2.0"
  256. ],
  257. "authors": [
  258. {
  259. "name": "YF",
  260. "email": "291323003@qq.com"
  261. }
  262. ],
  263. "description": "easyswoole component",
  264. "homepage": "https://www.easyswoole.com/",
  265. "keywords": [
  266. "async",
  267. "easyswoole",
  268. "framework",
  269. "swoole"
  270. ],
  271. "support": {
  272. "issues": "https://github.com/easy-swoole/annotation/issues",
  273. "source": "https://github.com/easy-swoole/annotation/tree/2.x"
  274. },
  275. "install-path": "../easyswoole/annotation"
  276. },
  277. {
  278. "name": "easyswoole/bridge",
  279. "version": "1.0.3",
  280. "version_normalized": "1.0.3.0",
  281. "source": {
  282. "type": "git",
  283. "url": "https://github.com/easy-swoole/bridge.git",
  284. "reference": "c85745af0e5268e2e355a040b00d3bd6652bb25c"
  285. },
  286. "dist": {
  287. "type": "zip",
  288. "url": "https://api.github.com/repos/easy-swoole/bridge/zipball/c85745af0e5268e2e355a040b00d3bd6652bb25c",
  289. "reference": "c85745af0e5268e2e355a040b00d3bd6652bb25c",
  290. "shasum": ""
  291. },
  292. "require": {
  293. "easyswoole/component": "^2.1",
  294. "easyswoole/socket": "^1.1",
  295. "easyswoole/spl": "^1.0",
  296. "ext-swoole": ">=4.4",
  297. "php": ">=7.1.0"
  298. },
  299. "require-dev": {
  300. "easyswoole/swoole-ide-helper": "^1.0"
  301. },
  302. "time": "2020-05-23T09:13:48+00:00",
  303. "type": "library",
  304. "installation-source": "dist",
  305. "autoload": {
  306. "psr-4": {
  307. "EasySwoole\\Bridge\\": "src/"
  308. }
  309. },
  310. "notification-url": "https://packagist.org/downloads/",
  311. "license": [
  312. "Apache-2.0"
  313. ],
  314. "authors": [
  315. {
  316. "name": "YF",
  317. "email": "291323003@qq.com"
  318. }
  319. ],
  320. "description": "An efficient swoole framework",
  321. "homepage": "https://www.easyswoole.com/",
  322. "keywords": [
  323. "async",
  324. "easyswoole",
  325. "framework",
  326. "swoole"
  327. ],
  328. "support": {
  329. "issues": "https://github.com/easy-swoole/bridge/issues",
  330. "source": "https://github.com/easy-swoole/bridge/tree/master"
  331. },
  332. "install-path": "../easyswoole/bridge"
  333. },
  334. {
  335. "name": "easyswoole/command",
  336. "version": "1.1.7",
  337. "version_normalized": "1.1.7.0",
  338. "source": {
  339. "type": "git",
  340. "url": "https://github.com/easy-swoole/command.git",
  341. "reference": "a82e6a90f275218854b90e29fba0a0aa27217aa3"
  342. },
  343. "dist": {
  344. "type": "zip",
  345. "url": "https://api.github.com/repos/easy-swoole/command/zipball/a82e6a90f275218854b90e29fba0a0aa27217aa3",
  346. "reference": "a82e6a90f275218854b90e29fba0a0aa27217aa3",
  347. "shasum": ""
  348. },
  349. "require": {
  350. "easyswoole/component": "^2.0",
  351. "php": ">=7.1.0"
  352. },
  353. "require-dev": {
  354. "easyswoole/swoole-ide-helper": "^1.0"
  355. },
  356. "time": "2020-09-08T02:09:47+00:00",
  357. "type": "library",
  358. "installation-source": "dist",
  359. "autoload": {
  360. "psr-4": {
  361. "EasySwoole\\Command\\": "src/"
  362. }
  363. },
  364. "notification-url": "https://packagist.org/downloads/",
  365. "license": [
  366. "Apache-2.0"
  367. ],
  368. "authors": [
  369. {
  370. "name": "YF",
  371. "email": "291323003@qq.com"
  372. }
  373. ],
  374. "description": "An efficient swoole framework",
  375. "homepage": "https://www.easyswoole.com/",
  376. "keywords": [
  377. "async",
  378. "easyswoole",
  379. "framework",
  380. "swoole"
  381. ],
  382. "support": {
  383. "issues": "https://github.com/easy-swoole/command/issues",
  384. "source": "https://github.com/easy-swoole/command/tree/master"
  385. },
  386. "install-path": "../easyswoole/command"
  387. },
  388. {
  389. "name": "easyswoole/component",
  390. "version": "2.3.2",
  391. "version_normalized": "2.3.2.0",
  392. "source": {
  393. "type": "git",
  394. "url": "https://github.com/easy-swoole/component.git",
  395. "reference": "aa3420b18bcd2ece6d7f3f39f30923018bcfd620"
  396. },
  397. "dist": {
  398. "type": "zip",
  399. "url": "https://api.github.com/repos/easy-swoole/component/zipball/aa3420b18bcd2ece6d7f3f39f30923018bcfd620",
  400. "reference": "aa3420b18bcd2ece6d7f3f39f30923018bcfd620",
  401. "shasum": ""
  402. },
  403. "require": {
  404. "easyswoole/spl": "^1.1",
  405. "easyswoole/utility": "^1.0",
  406. "ext-swoole": "^4.4.2",
  407. "php": ">=7.1.0"
  408. },
  409. "require-dev": {
  410. "easyswoole/phpunit": "^1.0",
  411. "easyswoole/swoole-ide-helper": "^1.2"
  412. },
  413. "time": "2021-09-23T03:03:32+00:00",
  414. "type": "library",
  415. "installation-source": "dist",
  416. "autoload": {
  417. "psr-4": {
  418. "EasySwoole\\Component\\": "src/",
  419. "EasySwoole\\Component\\Tests\\": "Tests/"
  420. }
  421. },
  422. "notification-url": "https://packagist.org/downloads/",
  423. "license": [
  424. "Apache-2.0"
  425. ],
  426. "authors": [
  427. {
  428. "name": "YF",
  429. "email": "291323003@qq.com"
  430. }
  431. ],
  432. "description": "easyswoole component",
  433. "homepage": "https://www.easyswoole.com/",
  434. "keywords": [
  435. "async",
  436. "easyswoole",
  437. "framework",
  438. "swoole"
  439. ],
  440. "support": {
  441. "issues": "https://github.com/easy-swoole/component/issues",
  442. "source": "https://github.com/easy-swoole/component/tree/2.3.2"
  443. },
  444. "install-path": "../easyswoole/component"
  445. },
  446. {
  447. "name": "easyswoole/config",
  448. "version": "1.0.7",
  449. "version_normalized": "1.0.7.0",
  450. "source": {
  451. "type": "git",
  452. "url": "https://github.com/easy-swoole/config.git",
  453. "reference": "16c60dc31da7c6558c02f394d149ace2ad47453d"
  454. },
  455. "dist": {
  456. "type": "zip",
  457. "url": "https://api.github.com/repos/easy-swoole/config/zipball/16c60dc31da7c6558c02f394d149ace2ad47453d",
  458. "reference": "16c60dc31da7c6558c02f394d149ace2ad47453d",
  459. "shasum": ""
  460. },
  461. "require": {
  462. "easyswoole/spl": "^1.1",
  463. "php": ">=7.1.0"
  464. },
  465. "require-dev": {
  466. "easyswoole/phpunit": "^1.0",
  467. "easyswoole/swoole-ide-helper": "^1.2"
  468. },
  469. "time": "2020-07-13T07:57:08+00:00",
  470. "type": "library",
  471. "installation-source": "dist",
  472. "autoload": {
  473. "psr-4": {
  474. "EasySwoole\\Config\\": "src/",
  475. "EasySwoole\\Config\\Test\\": "tests/"
  476. }
  477. },
  478. "notification-url": "https://packagist.org/downloads/",
  479. "license": [
  480. "Apache-2.0"
  481. ],
  482. "authors": [
  483. {
  484. "name": "YF",
  485. "email": "291323003@qq.com"
  486. }
  487. ],
  488. "description": "easyswoole component",
  489. "homepage": "https://www.easyswoole.com/",
  490. "keywords": [
  491. "async",
  492. "easyswoole",
  493. "framework",
  494. "swoole"
  495. ],
  496. "support": {
  497. "issues": "https://github.com/easy-swoole/config/issues",
  498. "source": "https://github.com/easy-swoole/config/tree/1.0.7"
  499. },
  500. "install-path": "../easyswoole/config"
  501. },
  502. {
  503. "name": "easyswoole/crontab",
  504. "version": "1.0.1",
  505. "version_normalized": "1.0.1.0",
  506. "source": {
  507. "type": "git",
  508. "url": "https://github.com/easy-swoole/crontab.git",
  509. "reference": "525cf23ed3e515050e1056a7ccaf615482254e6b"
  510. },
  511. "dist": {
  512. "type": "zip",
  513. "url": "https://api.github.com/repos/easy-swoole/crontab/zipball/525cf23ed3e515050e1056a7ccaf615482254e6b",
  514. "reference": "525cf23ed3e515050e1056a7ccaf615482254e6b",
  515. "shasum": ""
  516. },
  517. "require": {
  518. "dragonmantank/cron-expression": "^2.2",
  519. "easyswoole/component": "^2.0",
  520. "php": ">=7.1.0"
  521. },
  522. "require-dev": {
  523. "easyswoole/swoole-ide-helper": "^1.3"
  524. },
  525. "time": "2021-07-14T03:16:33+00:00",
  526. "type": "library",
  527. "installation-source": "dist",
  528. "autoload": {
  529. "psr-4": {
  530. "EasySwoole\\Crontab\\": "src/"
  531. }
  532. },
  533. "notification-url": "https://packagist.org/downloads/",
  534. "license": [
  535. "Apache-2.0"
  536. ],
  537. "authors": [
  538. {
  539. "name": "evalor",
  540. "email": "mipone@foxmail.com"
  541. }
  542. ],
  543. "description": "easyswoole extension tool library",
  544. "support": {
  545. "issues": "https://github.com/easy-swoole/crontab/issues",
  546. "source": "https://github.com/easy-swoole/crontab/tree/1.0.1"
  547. },
  548. "install-path": "../easyswoole/crontab"
  549. },
  550. {
  551. "name": "easyswoole/ddl",
  552. "version": "1.0.10",
  553. "version_normalized": "1.0.10.0",
  554. "source": {
  555. "type": "git",
  556. "url": "https://github.com/easy-swoole/ddl.git",
  557. "reference": "8971c34115ea62d4565efbc6910ea743e8bc8013"
  558. },
  559. "dist": {
  560. "type": "zip",
  561. "url": "https://api.github.com/repos/easy-swoole/ddl/zipball/8971c34115ea62d4565efbc6910ea743e8bc8013",
  562. "reference": "8971c34115ea62d4565efbc6910ea743e8bc8013",
  563. "shasum": ""
  564. },
  565. "require": {
  566. "easyswoole/spl": "^1.2"
  567. },
  568. "time": "2021-04-19T06:08:32+00:00",
  569. "type": "library",
  570. "installation-source": "dist",
  571. "autoload": {
  572. "psr-4": {
  573. "EasySwoole\\DDL\\": "src/",
  574. "EasySwoole\\DDL\\Test\\": "test/"
  575. }
  576. },
  577. "notification-url": "https://packagist.org/downloads/",
  578. "license": [
  579. "Apache-2.0"
  580. ],
  581. "authors": [
  582. {
  583. "name": "YF",
  584. "email": "291323003@qq.com"
  585. }
  586. ],
  587. "description": "An efficient swoole framework",
  588. "homepage": "https://www.easyswoole.com/",
  589. "keywords": [
  590. "async",
  591. "easyswoole",
  592. "framework",
  593. "swoole"
  594. ],
  595. "support": {
  596. "issues": "https://github.com/easy-swoole/ddl/issues",
  597. "source": "https://github.com/easy-swoole/ddl/tree/1.0.10"
  598. },
  599. "install-path": "../easyswoole/ddl"
  600. },
  601. {
  602. "name": "easyswoole/doctrine-annotations",
  603. "version": "1.0.1",
  604. "version_normalized": "1.0.1.0",
  605. "source": {
  606. "type": "git",
  607. "url": "https://github.com/easy-swoole/doctrine-annotations.git",
  608. "reference": "14cd9bcd6a902767ce7e49eb34912cda9aae8c02"
  609. },
  610. "dist": {
  611. "type": "zip",
  612. "url": "https://api.github.com/repos/easy-swoole/doctrine-annotations/zipball/14cd9bcd6a902767ce7e49eb34912cda9aae8c02",
  613. "reference": "14cd9bcd6a902767ce7e49eb34912cda9aae8c02",
  614. "shasum": ""
  615. },
  616. "require": {
  617. "doctrine/lexer": "^1.2",
  618. "ext-tokenizer": "*",
  619. "php": "^7.1 || ^8.0"
  620. },
  621. "require-dev": {
  622. "easyswoole/phpunit": "^1.0",
  623. "easyswoole/swoole-ide-helper": "^1.2"
  624. },
  625. "time": "2020-08-28T03:10:15+00:00",
  626. "type": "library",
  627. "installation-source": "dist",
  628. "autoload": {
  629. "psr-4": {
  630. "EasySwoole\\DoctrineAnnotation\\": "src/",
  631. "EasySwoole\\DoctrineAnnotation\\Tests\\": "tests/"
  632. }
  633. },
  634. "notification-url": "https://packagist.org/downloads/",
  635. "license": [
  636. "MIT"
  637. ],
  638. "authors": [
  639. {
  640. "name": "YF",
  641. "email": "291323003@qq.com"
  642. }
  643. ],
  644. "description": "An efficient swoole framework",
  645. "homepage": "https://www.easyswoole.com/",
  646. "keywords": [
  647. "async",
  648. "easyswoole",
  649. "framework",
  650. "swoole"
  651. ],
  652. "support": {
  653. "issues": "https://github.com/easy-swoole/doctrine-annotations/issues",
  654. "source": "https://github.com/easy-swoole/doctrine-annotations/tree/1.0.1"
  655. },
  656. "install-path": "../easyswoole/doctrine-annotations"
  657. },
  658. {
  659. "name": "easyswoole/easyswoole",
  660. "version": "3.5.1",
  661. "version_normalized": "3.5.1.0",
  662. "source": {
  663. "type": "git",
  664. "url": "https://github.com/easy-swoole/easyswoole.git",
  665. "reference": "8e8df0629830f5213c1332252f980124bf9d5df3"
  666. },
  667. "dist": {
  668. "type": "zip",
  669. "url": "https://api.github.com/repos/easy-swoole/easyswoole/zipball/8e8df0629830f5213c1332252f980124bf9d5df3",
  670. "reference": "8e8df0629830f5213c1332252f980124bf9d5df3",
  671. "shasum": ""
  672. },
  673. "require": {
  674. "easyswoole/bridge": "^1.0",
  675. "easyswoole/command": "^1.1",
  676. "easyswoole/component": "^2.0",
  677. "easyswoole/config": "^1.0",
  678. "easyswoole/crontab": "^1.0",
  679. "easyswoole/http-annotation": "^2.0",
  680. "easyswoole/phpunit": "^1.1",
  681. "easyswoole/socket": "^1.1",
  682. "easyswoole/spl": "^1.0",
  683. "easyswoole/task": "^1.1",
  684. "easyswoole/trigger": "^1.0",
  685. "easyswoole/utility": "^1.0",
  686. "ext-json": "*",
  687. "ext-swoole": ">=4.4.4",
  688. "php": ">=7.1.0"
  689. },
  690. "require-dev": {
  691. "easyswoole/swoole-ide-helper": "^1.2"
  692. },
  693. "time": "2022-01-18T07:03:58+00:00",
  694. "bin": [
  695. "bin/easyswoole"
  696. ],
  697. "type": "library",
  698. "installation-source": "dist",
  699. "autoload": {
  700. "psr-4": {
  701. "EasySwoole\\EasySwoole\\": "src/",
  702. "App\\": "App/"
  703. }
  704. },
  705. "notification-url": "https://packagist.org/downloads/",
  706. "license": [
  707. "Apache-2.0"
  708. ],
  709. "authors": [
  710. {
  711. "name": "YF",
  712. "email": "291323003@qq.com"
  713. }
  714. ],
  715. "description": "An efficient swoole framework",
  716. "homepage": "https://www.easyswoole.com/",
  717. "keywords": [
  718. "async",
  719. "easyswoole",
  720. "framework",
  721. "swoole"
  722. ],
  723. "support": {
  724. "issues": "https://github.com/easy-swoole/easyswoole/issues",
  725. "source": "https://github.com/easy-swoole/easyswoole/tree/3.5.1"
  726. },
  727. "install-path": "../easyswoole/easyswoole"
  728. },
  729. {
  730. "name": "easyswoole/http",
  731. "version": "2.0.4",
  732. "version_normalized": "2.0.4.0",
  733. "source": {
  734. "type": "git",
  735. "url": "https://github.com/easy-swoole/http.git",
  736. "reference": "48bc34852b84a35cf0369423fdeed3dc2425f33f"
  737. },
  738. "dist": {
  739. "type": "zip",
  740. "url": "https://api.github.com/repos/easy-swoole/http/zipball/48bc34852b84a35cf0369423fdeed3dc2425f33f",
  741. "reference": "48bc34852b84a35cf0369423fdeed3dc2425f33f",
  742. "shasum": ""
  743. },
  744. "require": {
  745. "easyswoole/component": "^2.1",
  746. "easyswoole/session": "^3.0",
  747. "easyswoole/spl": "^1.0",
  748. "easyswoole/utility": "^1.1",
  749. "ext-json": "*",
  750. "ext-libxml": "*",
  751. "ext-simplexml": "*",
  752. "ext-swoole": ">=4.0",
  753. "nikic/fast-route": "^1.3",
  754. "php": ">=7.1.0",
  755. "psr/http-message": "^1.0"
  756. },
  757. "require-dev": {
  758. "easyswoole/phpunit": "^1.0",
  759. "easyswoole/swoole-ide-helper": "^1.0"
  760. },
  761. "time": "2021-08-31T11:51:04+00:00",
  762. "type": "library",
  763. "installation-source": "dist",
  764. "autoload": {
  765. "psr-4": {
  766. "EasySwoole\\Http\\": "src/",
  767. "EasySwoole\\Http\\Tests\\": "tests/"
  768. }
  769. },
  770. "notification-url": "https://packagist.org/downloads/",
  771. "license": [
  772. "Apache-2.0"
  773. ],
  774. "authors": [
  775. {
  776. "name": "YF",
  777. "email": "291323003@qq.com"
  778. }
  779. ],
  780. "description": "An efficient swoole framework",
  781. "homepage": "https://www.easyswoole.com/",
  782. "keywords": [
  783. "async",
  784. "easyswoole",
  785. "framework",
  786. "swoole"
  787. ],
  788. "support": {
  789. "issues": "https://github.com/easy-swoole/http/issues",
  790. "source": "https://github.com/easy-swoole/http/tree/2.0.4"
  791. },
  792. "install-path": "../easyswoole/http"
  793. },
  794. {
  795. "name": "easyswoole/http-annotation",
  796. "version": "2.2.1",
  797. "version_normalized": "2.2.1.0",
  798. "source": {
  799. "type": "git",
  800. "url": "https://github.com/easy-swoole/http-annotation.git",
  801. "reference": "62a60688a1629e4e67753177b4971e777d2cf50a"
  802. },
  803. "dist": {
  804. "type": "zip",
  805. "url": "https://api.github.com/repos/easy-swoole/http-annotation/zipball/62a60688a1629e4e67753177b4971e777d2cf50a",
  806. "reference": "62a60688a1629e4e67753177b4971e777d2cf50a",
  807. "shasum": ""
  808. },
  809. "require": {
  810. "easyswoole/annotation": "^2.0",
  811. "easyswoole/command": "^1.1",
  812. "easyswoole/component": "^2.2",
  813. "easyswoole/http": "^2.0",
  814. "easyswoole/parsedown": "^1.0",
  815. "easyswoole/validate": "^2.1",
  816. "ext-json": "*",
  817. "ext-libxml": "*",
  818. "ext-simplexml": "*",
  819. "ext-swoole": ">=4.4.7",
  820. "php": ">=7.1.0"
  821. },
  822. "require-dev": {
  823. "easyswoole/phpunit": "^1.0",
  824. "easyswoole/swoole-ide-helper": "^1.0"
  825. },
  826. "time": "2021-07-06T08:06:24+00:00",
  827. "bin": [
  828. "bin/annotation-doc"
  829. ],
  830. "type": "library",
  831. "installation-source": "dist",
  832. "autoload": {
  833. "psr-4": {
  834. "EasySwoole\\HttpAnnotation\\": "src/"
  835. }
  836. },
  837. "notification-url": "https://packagist.org/downloads/",
  838. "license": [
  839. "Apache-2.0"
  840. ],
  841. "authors": [
  842. {
  843. "name": "YF",
  844. "email": "291323003@qq.com"
  845. }
  846. ],
  847. "description": "php stander lib",
  848. "homepage": "https://www.easyswoole.com/",
  849. "keywords": [
  850. "async",
  851. "easyswoole",
  852. "framework",
  853. "swoole"
  854. ],
  855. "support": {
  856. "issues": "https://github.com/easy-swoole/http-annotation/issues",
  857. "source": "https://github.com/easy-swoole/http-annotation/tree/2.2.1"
  858. },
  859. "install-path": "../easyswoole/http-annotation"
  860. },
  861. {
  862. "name": "easyswoole/log",
  863. "version": "1.1.1",
  864. "version_normalized": "1.1.1.0",
  865. "source": {
  866. "type": "git",
  867. "url": "https://github.com/easy-swoole/log.git",
  868. "reference": "b19fe14d8f5153f2c2e174400e21d644618eb49b"
  869. },
  870. "dist": {
  871. "type": "zip",
  872. "url": "https://api.github.com/repos/easy-swoole/log/zipball/b19fe14d8f5153f2c2e174400e21d644618eb49b",
  873. "reference": "b19fe14d8f5153f2c2e174400e21d644618eb49b",
  874. "shasum": ""
  875. },
  876. "time": "2021-02-02T07:08:50+00:00",
  877. "type": "library",
  878. "installation-source": "dist",
  879. "autoload": {
  880. "psr-4": {
  881. "EasySwoole\\Log\\": "src/"
  882. }
  883. },
  884. "notification-url": "https://packagist.org/downloads/",
  885. "license": [
  886. "Apache-2.0"
  887. ],
  888. "authors": [
  889. {
  890. "name": "YF",
  891. "email": "291323003@qq.com"
  892. }
  893. ],
  894. "description": "An efficient swoole framework",
  895. "homepage": "https://www.easyswoole.com/",
  896. "keywords": [
  897. "async",
  898. "easyswoole",
  899. "framework",
  900. "swoole"
  901. ],
  902. "support": {
  903. "issues": "https://github.com/easy-swoole/log/issues",
  904. "source": "https://github.com/easy-swoole/log/tree/1.1.1"
  905. },
  906. "install-path": "../easyswoole/log"
  907. },
  908. {
  909. "name": "easyswoole/mysqli",
  910. "version": "2.2.11",
  911. "version_normalized": "2.2.11.0",
  912. "source": {
  913. "type": "git",
  914. "url": "https://github.com/easy-swoole/mysqli.git",
  915. "reference": "9c4aac7c111c0dc073b53a40006606e44c11079c"
  916. },
  917. "dist": {
  918. "type": "zip",
  919. "url": "https://api.github.com/repos/easy-swoole/mysqli/zipball/9c4aac7c111c0dc073b53a40006606e44c11079c",
  920. "reference": "9c4aac7c111c0dc073b53a40006606e44c11079c",
  921. "shasum": ""
  922. },
  923. "require": {
  924. "easyswoole/spl": "^1.2"
  925. },
  926. "require-dev": {
  927. "easyswoole/phpunit": "^1.0",
  928. "easyswoole/swoole-ide-helper": "^1.2"
  929. },
  930. "time": "2021-09-22T06:40:09+00:00",
  931. "type": "library",
  932. "installation-source": "dist",
  933. "autoload": {
  934. "psr-4": {
  935. "EasySwoole\\Mysqli\\": "src/",
  936. "EasySwoole\\Mysqli\\Tests\\": "tests/"
  937. }
  938. },
  939. "notification-url": "https://packagist.org/downloads/",
  940. "license": [
  941. "Apache-2.0"
  942. ],
  943. "authors": [
  944. {
  945. "name": "YF",
  946. "email": "291323003@qq.com"
  947. }
  948. ],
  949. "description": "An efficient swoole framework",
  950. "homepage": "https://www.easyswoole.com/",
  951. "keywords": [
  952. "async",
  953. "easyswoole",
  954. "framework",
  955. "swoole"
  956. ],
  957. "support": {
  958. "issues": "https://github.com/easy-swoole/mysqli/issues",
  959. "source": "https://github.com/easy-swoole/mysqli/tree/2.2.11"
  960. },
  961. "install-path": "../easyswoole/mysqli"
  962. },
  963. {
  964. "name": "easyswoole/orm",
  965. "version": "1.5.4",
  966. "version_normalized": "1.5.4.0",
  967. "source": {
  968. "type": "git",
  969. "url": "https://github.com/easy-swoole/orm.git",
  970. "reference": "387a4efc1acebc5ce48d368fafc1a5503d3bb5d5"
  971. },
  972. "dist": {
  973. "type": "zip",
  974. "url": "https://api.github.com/repos/easy-swoole/orm/zipball/387a4efc1acebc5ce48d368fafc1a5503d3bb5d5",
  975. "reference": "387a4efc1acebc5ce48d368fafc1a5503d3bb5d5",
  976. "shasum": ""
  977. },
  978. "require": {
  979. "easyswoole/component": "^2.0",
  980. "easyswoole/ddl": "^1.0",
  981. "easyswoole/mysqli": "^2.0",
  982. "easyswoole/pool": "^1.0",
  983. "ext-json": "*",
  984. "ext-swoole": ">=4.4.7",
  985. "php": ">=7.1.0"
  986. },
  987. "require-dev": {
  988. "easyswoole/phpunit": "^1.0",
  989. "easyswoole/swoole-ide-helper": "^1.0"
  990. },
  991. "time": "2022-01-27T09:50:56+00:00",
  992. "type": "library",
  993. "installation-source": "dist",
  994. "autoload": {
  995. "psr-4": {
  996. "EasySwoole\\ORM\\": "src/"
  997. }
  998. },
  999. "notification-url": "https://packagist.org/downloads/",
  1000. "license": [
  1001. "Apache-2.0"
  1002. ],
  1003. "authors": [
  1004. {
  1005. "name": "YF",
  1006. "email": "291323003@qq.com"
  1007. }
  1008. ],
  1009. "description": "php stander lib",
  1010. "homepage": "https://www.easyswoole.com/",
  1011. "keywords": [
  1012. "async",
  1013. "easyswoole",
  1014. "framework",
  1015. "swoole"
  1016. ],
  1017. "support": {
  1018. "issues": "https://github.com/easy-swoole/orm/issues",
  1019. "source": "https://github.com/easy-swoole/orm/tree/1.5.4"
  1020. },
  1021. "install-path": "../easyswoole/orm"
  1022. },
  1023. {
  1024. "name": "easyswoole/parsedown",
  1025. "version": "1.0.2",
  1026. "version_normalized": "1.0.2.0",
  1027. "source": {
  1028. "type": "git",
  1029. "url": "https://github.com/easy-swoole/parsedown.git",
  1030. "reference": "ec25cae8a6196016b643315b9c0dbda01716c4f7"
  1031. },
  1032. "dist": {
  1033. "type": "zip",
  1034. "url": "https://api.github.com/repos/easy-swoole/parsedown/zipball/ec25cae8a6196016b643315b9c0dbda01716c4f7",
  1035. "reference": "ec25cae8a6196016b643315b9c0dbda01716c4f7",
  1036. "shasum": ""
  1037. },
  1038. "require": {
  1039. "ext-mbstring": "*",
  1040. "php": ">=5.3.0"
  1041. },
  1042. "require-dev": {
  1043. "phpunit/phpunit": "^4.8.35"
  1044. },
  1045. "time": "2020-02-28T03:04:13+00:00",
  1046. "type": "library",
  1047. "installation-source": "dist",
  1048. "autoload": {
  1049. "psr-4": {
  1050. "EasySwoole\\ParserDown\\": "src/"
  1051. }
  1052. },
  1053. "notification-url": "https://packagist.org/downloads/",
  1054. "support": {
  1055. "issues": "https://github.com/easy-swoole/parsedown/issues",
  1056. "source": "https://github.com/easy-swoole/parsedown/tree/master"
  1057. },
  1058. "install-path": "../easyswoole/parsedown"
  1059. },
  1060. {
  1061. "name": "easyswoole/phpunit",
  1062. "version": "1.1.0",
  1063. "version_normalized": "1.1.0.0",
  1064. "source": {
  1065. "type": "git",
  1066. "url": "https://github.com/easy-swoole/phpunit.git",
  1067. "reference": "a86107e9c8a97ea6f9948dc3f9cd84abeaa7184b"
  1068. },
  1069. "dist": {
  1070. "type": "zip",
  1071. "url": "https://api.github.com/repos/easy-swoole/phpunit/zipball/a86107e9c8a97ea6f9948dc3f9cd84abeaa7184b",
  1072. "reference": "a86107e9c8a97ea6f9948dc3f9cd84abeaa7184b",
  1073. "shasum": ""
  1074. },
  1075. "require": {
  1076. "easyswoole/command": "^1.1",
  1077. "ext-swoole": "^4.4.0",
  1078. "phpunit/phpunit": "^9.3"
  1079. },
  1080. "require-dev": {
  1081. "easyswoole/swoole-ide-helper": "*"
  1082. },
  1083. "time": "2021-04-08T03:59:08+00:00",
  1084. "bin": [
  1085. "bin/co-phpunit"
  1086. ],
  1087. "type": "library",
  1088. "installation-source": "dist",
  1089. "autoload": {
  1090. "psr-4": {
  1091. "EasySwoole\\Phpunit\\": "src/"
  1092. }
  1093. },
  1094. "notification-url": "https://packagist.org/downloads/",
  1095. "license": [
  1096. "Apache-2.0"
  1097. ],
  1098. "authors": [
  1099. {
  1100. "name": "YF",
  1101. "email": "291323003@qq.com"
  1102. }
  1103. ],
  1104. "description": "An efficient swoole framework",
  1105. "homepage": "https://www.easyswoole.com/",
  1106. "keywords": [
  1107. "async",
  1108. "easyswoole",
  1109. "framework",
  1110. "swoole"
  1111. ],
  1112. "support": {
  1113. "issues": "https://github.com/easy-swoole/phpunit/issues",
  1114. "source": "https://github.com/easy-swoole/phpunit/tree/1.1.0"
  1115. },
  1116. "install-path": "../easyswoole/phpunit"
  1117. },
  1118. {
  1119. "name": "easyswoole/pool",
  1120. "version": "1.1.1",
  1121. "version_normalized": "1.1.1.0",
  1122. "source": {
  1123. "type": "git",
  1124. "url": "https://github.com/easy-swoole/pool.git",
  1125. "reference": "25241d5107acd7f58ab5a37f04adecc65a84ec64"
  1126. },
  1127. "dist": {
  1128. "type": "zip",
  1129. "url": "https://api.github.com/repos/easy-swoole/pool/zipball/25241d5107acd7f58ab5a37f04adecc65a84ec64",
  1130. "reference": "25241d5107acd7f58ab5a37f04adecc65a84ec64",
  1131. "shasum": ""
  1132. },
  1133. "require": {
  1134. "easyswoole/component": "^2.2.1",
  1135. "easyswoole/spl": "^1.3",
  1136. "easyswoole/utility": "^1.1",
  1137. "ext-json": "*",
  1138. "php": ">=7.1.0"
  1139. },
  1140. "require-dev": {
  1141. "easyswoole/phpunit": "^1.0",
  1142. "easyswoole/swoole-ide-helper": "^1.0"
  1143. },
  1144. "time": "2022-01-24T04:40:26+00:00",
  1145. "type": "library",
  1146. "installation-source": "dist",
  1147. "autoload": {
  1148. "psr-4": {
  1149. "EasySwoole\\Pool\\": "src/",
  1150. "EasySwoole\\Pool\\Tests\\": "tests/"
  1151. }
  1152. },
  1153. "notification-url": "https://packagist.org/downloads/",
  1154. "license": [
  1155. "Apache-2.0"
  1156. ],
  1157. "authors": [
  1158. {
  1159. "name": "YF",
  1160. "email": "291323003@qq.com"
  1161. }
  1162. ],
  1163. "description": "php stander lib",
  1164. "homepage": "https://www.easyswoole.com/",
  1165. "keywords": [
  1166. "async",
  1167. "easyswoole",
  1168. "framework",
  1169. "swoole"
  1170. ],
  1171. "support": {
  1172. "issues": "https://github.com/easy-swoole/pool/issues",
  1173. "source": "https://github.com/easy-swoole/pool/tree/1.1.1"
  1174. },
  1175. "install-path": "../easyswoole/pool"
  1176. },
  1177. {
  1178. "name": "easyswoole/session",
  1179. "version": "3.0.1",
  1180. "version_normalized": "3.0.1.0",
  1181. "source": {
  1182. "type": "git",
  1183. "url": "https://github.com/easy-swoole/session.git",
  1184. "reference": "77dfb0021823db4c3fa5c304053026d211e68339"
  1185. },
  1186. "dist": {
  1187. "type": "zip",
  1188. "url": "https://api.github.com/repos/easy-swoole/session/zipball/77dfb0021823db4c3fa5c304053026d211e68339",
  1189. "reference": "77dfb0021823db4c3fa5c304053026d211e68339",
  1190. "shasum": ""
  1191. },
  1192. "require": {
  1193. "easyswoole/component": "^2.1",
  1194. "easyswoole/spl": "^1.3",
  1195. "easyswoole/utility": "^1.1",
  1196. "php": ">=7.1.0"
  1197. },
  1198. "require-dev": {
  1199. "easyswoole/swoole-ide-helper": "^1.2"
  1200. },
  1201. "time": "2021-01-09T03:36:48+00:00",
  1202. "type": "library",
  1203. "installation-source": "dist",
  1204. "autoload": {
  1205. "psr-4": {
  1206. "EasySwoole\\Session\\": "src/",
  1207. "EasySwoole\\Session\\Test\\": "tests/"
  1208. }
  1209. },
  1210. "notification-url": "https://packagist.org/downloads/",
  1211. "license": [
  1212. "Apache-2.0"
  1213. ],
  1214. "authors": [
  1215. {
  1216. "name": "YF",
  1217. "email": "291323003@qq.com"
  1218. }
  1219. ],
  1220. "description": "easyswoole component",
  1221. "homepage": "https://www.easyswoole.com/",
  1222. "keywords": [
  1223. "async",
  1224. "easyswoole",
  1225. "framework",
  1226. "swoole"
  1227. ],
  1228. "support": {
  1229. "issues": "https://github.com/easy-swoole/session/issues",
  1230. "source": "https://github.com/easy-swoole/session/tree/3.0.1"
  1231. },
  1232. "install-path": "../easyswoole/session"
  1233. },
  1234. {
  1235. "name": "easyswoole/socket",
  1236. "version": "1.1.14",
  1237. "version_normalized": "1.1.14.0",
  1238. "source": {
  1239. "type": "git",
  1240. "url": "https://github.com/easy-swoole/socket.git",
  1241. "reference": "e5765ad8b6112d786a6d6c6c8f47a7429effbcea"
  1242. },
  1243. "dist": {
  1244. "type": "zip",
  1245. "url": "https://api.github.com/repos/easy-swoole/socket/zipball/e5765ad8b6112d786a6d6c6c8f47a7429effbcea",
  1246. "reference": "e5765ad8b6112d786a6d6c6c8f47a7429effbcea",
  1247. "shasum": ""
  1248. },
  1249. "require": {
  1250. "easyswoole/spl": "^1.0",
  1251. "php": ">=7.1.0"
  1252. },
  1253. "require-dev": {
  1254. "easyswoole/phpunit": "^1.0",
  1255. "easyswoole/swoole-ide-helper": "^1.0"
  1256. },
  1257. "time": "2021-01-28T08:05:52+00:00",
  1258. "type": "library",
  1259. "installation-source": "dist",
  1260. "autoload": {
  1261. "psr-4": {
  1262. "EasySwoole\\Socket\\": "src/"
  1263. }
  1264. },
  1265. "notification-url": "https://packagist.org/downloads/",
  1266. "license": [
  1267. "Apache-2.0"
  1268. ],
  1269. "authors": [
  1270. {
  1271. "name": "YF",
  1272. "email": "291323003@qq.com"
  1273. }
  1274. ],
  1275. "description": "An efficient swoole framework",
  1276. "homepage": "https://www.easyswoole.com/",
  1277. "keywords": [
  1278. "async",
  1279. "easyswoole",
  1280. "framework",
  1281. "swoole"
  1282. ],
  1283. "support": {
  1284. "issues": "https://github.com/easy-swoole/socket/issues",
  1285. "source": "https://github.com/easy-swoole/socket/tree/1.1.14"
  1286. },
  1287. "install-path": "../easyswoole/socket"
  1288. },
  1289. {
  1290. "name": "easyswoole/spl",
  1291. "version": "1.4.1",
  1292. "version_normalized": "1.4.1.0",
  1293. "source": {
  1294. "type": "git",
  1295. "url": "https://github.com/easy-swoole/spl.git",
  1296. "reference": "3d02bceaf1031a78f959d41dab04e37121f9c58c"
  1297. },
  1298. "dist": {
  1299. "type": "zip",
  1300. "url": "https://api.github.com/repos/easy-swoole/spl/zipball/3d02bceaf1031a78f959d41dab04e37121f9c58c",
  1301. "reference": "3d02bceaf1031a78f959d41dab04e37121f9c58c",
  1302. "shasum": ""
  1303. },
  1304. "require": {
  1305. "ext-json": "*",
  1306. "php": ">=7.1.0"
  1307. },
  1308. "require-dev": {
  1309. "easyswoole/phpunit": "^1.0",
  1310. "easyswoole/swoole-ide-helper": "^1.0"
  1311. },
  1312. "time": "2022-02-02T12:04:48+00:00",
  1313. "type": "library",
  1314. "installation-source": "dist",
  1315. "autoload": {
  1316. "psr-4": {
  1317. "EasySwoole\\Spl\\": "src/",
  1318. "EasySwoole\\Spl\\Test\\": "test/"
  1319. }
  1320. },
  1321. "notification-url": "https://packagist.org/downloads/",
  1322. "license": [
  1323. "Apache-2.0"
  1324. ],
  1325. "authors": [
  1326. {
  1327. "name": "YF",
  1328. "email": "291323003@qq.com"
  1329. }
  1330. ],
  1331. "description": "php stander lib",
  1332. "homepage": "https://www.easyswoole.com/",
  1333. "keywords": [
  1334. "async",
  1335. "easyswoole",
  1336. "framework",
  1337. "swoole"
  1338. ],
  1339. "support": {
  1340. "issues": "https://github.com/easy-swoole/spl/issues",
  1341. "source": "https://github.com/easy-swoole/spl/tree/1.4.1"
  1342. },
  1343. "install-path": "../easyswoole/spl"
  1344. },
  1345. {
  1346. "name": "easyswoole/task",
  1347. "version": "1.1.2",
  1348. "version_normalized": "1.1.2.0",
  1349. "source": {
  1350. "type": "git",
  1351. "url": "https://github.com/easy-swoole/task.git",
  1352. "reference": "e1f7a1d03e22438c9a4bdc6e5fa8f849c346dc07"
  1353. },
  1354. "dist": {
  1355. "type": "zip",
  1356. "url": "https://api.github.com/repos/easy-swoole/task/zipball/e1f7a1d03e22438c9a4bdc6e5fa8f849c346dc07",
  1357. "reference": "e1f7a1d03e22438c9a4bdc6e5fa8f849c346dc07",
  1358. "shasum": ""
  1359. },
  1360. "require": {
  1361. "easyswoole/component": "^2.0",
  1362. "easyswoole/spl": "^1.2",
  1363. "ext-swoole": ">=4.4.5",
  1364. "opis/closure": "^3.5"
  1365. },
  1366. "require-dev": {
  1367. "easyswoole/swoole-ide-helper": "^1.0"
  1368. },
  1369. "time": "2020-12-01T13:43:22+00:00",
  1370. "type": "library",
  1371. "installation-source": "dist",
  1372. "autoload": {
  1373. "psr-4": {
  1374. "EasySwoole\\Task\\": "src/"
  1375. }
  1376. },
  1377. "notification-url": "https://packagist.org/downloads/",
  1378. "license": [
  1379. "Apache-2.0"
  1380. ],
  1381. "description": "A simple Queue implementation integrated into easySwoole",
  1382. "keywords": [
  1383. "easyswoole"
  1384. ],
  1385. "support": {
  1386. "issues": "https://github.com/easy-swoole/task/issues",
  1387. "source": "https://github.com/easy-swoole/task/tree/1.1.2"
  1388. },
  1389. "install-path": "../easyswoole/task"
  1390. },
  1391. {
  1392. "name": "easyswoole/trigger",
  1393. "version": "1.0.0",
  1394. "version_normalized": "1.0.0.0",
  1395. "source": {
  1396. "type": "git",
  1397. "url": "https://github.com/easy-swoole/trigger.git",
  1398. "reference": "f449f974d6645342134f455ce4a6885c8ad3a92e"
  1399. },
  1400. "dist": {
  1401. "type": "zip",
  1402. "url": "https://api.github.com/repos/easy-swoole/trigger/zipball/f449f974d6645342134f455ce4a6885c8ad3a92e",
  1403. "reference": "f449f974d6645342134f455ce4a6885c8ad3a92e",
  1404. "shasum": ""
  1405. },
  1406. "require": {
  1407. "easyswoole/log": "^1.0"
  1408. },
  1409. "time": "2019-05-29T15:33:12+00:00",
  1410. "type": "library",
  1411. "installation-source": "dist",
  1412. "autoload": {
  1413. "psr-4": {
  1414. "EasySwoole\\Trigger\\": "src/"
  1415. }
  1416. },
  1417. "notification-url": "https://packagist.org/downloads/",
  1418. "license": [
  1419. "Apache-2.0"
  1420. ],
  1421. "authors": [
  1422. {
  1423. "name": "YF",
  1424. "email": "291323003@qq.com"
  1425. }
  1426. ],
  1427. "description": "An efficient swoole framework",
  1428. "homepage": "https://www.easyswoole.com/",
  1429. "keywords": [
  1430. "async",
  1431. "easyswoole",
  1432. "framework",
  1433. "swoole"
  1434. ],
  1435. "support": {
  1436. "issues": "https://github.com/easy-swoole/trigger/issues",
  1437. "source": "https://github.com/easy-swoole/trigger/tree/master"
  1438. },
  1439. "install-path": "../easyswoole/trigger"
  1440. },
  1441. {
  1442. "name": "easyswoole/utility",
  1443. "version": "1.3.2",
  1444. "version_normalized": "1.3.2.0",
  1445. "source": {
  1446. "type": "git",
  1447. "url": "https://github.com/easy-swoole/utility.git",
  1448. "reference": "fd019b7fc8648314f98cd17020700245aaf88ce3"
  1449. },
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://api.github.com/repos/easy-swoole/utility/zipball/fd019b7fc8648314f98cd17020700245aaf88ce3",
  1453. "reference": "fd019b7fc8648314f98cd17020700245aaf88ce3",
  1454. "shasum": ""
  1455. },
  1456. "require": {
  1457. "ext-bcmath": "*",
  1458. "ext-json": "*",
  1459. "ext-openssl": "*",
  1460. "php": ">=7.1.0"
  1461. },
  1462. "require-dev": {
  1463. "easyswoole/phpunit": "^1.0",
  1464. "easyswoole/swoole-ide-helper": "^1.3"
  1465. },
  1466. "time": "2022-01-27T03:58:24+00:00",
  1467. "type": "library",
  1468. "installation-source": "dist",
  1469. "autoload": {
  1470. "psr-4": {
  1471. "EasySwoole\\Utility\\": "src/"
  1472. }
  1473. },
  1474. "notification-url": "https://packagist.org/downloads/",
  1475. "license": [
  1476. "Apache-2.0"
  1477. ],
  1478. "authors": [
  1479. {
  1480. "name": "evalor",
  1481. "email": "mipone@foxmail.com"
  1482. }
  1483. ],
  1484. "description": "easyswoole extension tool library",
  1485. "support": {
  1486. "issues": "https://github.com/easy-swoole/utility/issues",
  1487. "source": "https://github.com/easy-swoole/utility/tree/1.3.2"
  1488. },
  1489. "install-path": "../easyswoole/utility"
  1490. },
  1491. {
  1492. "name": "easyswoole/validate",
  1493. "version": "2.1.3",
  1494. "version_normalized": "2.1.3.0",
  1495. "source": {
  1496. "type": "git",
  1497. "url": "https://github.com/easy-swoole/validate.git",
  1498. "reference": "65a7ebc015be11394388cd16073cfc8d2dc41fa4"
  1499. },
  1500. "dist": {
  1501. "type": "zip",
  1502. "url": "https://api.github.com/repos/easy-swoole/validate/zipball/65a7ebc015be11394388cd16073cfc8d2dc41fa4",
  1503. "reference": "65a7ebc015be11394388cd16073cfc8d2dc41fa4",
  1504. "shasum": ""
  1505. },
  1506. "require": {
  1507. "easyswoole/spl": "^1.0",
  1508. "ext-json": "*",
  1509. "ext-mbstring": "*",
  1510. "php": ">=7.1.0",
  1511. "psr/http-message": "^1.0"
  1512. },
  1513. "require-dev": {
  1514. "easyswoole/phpunit": "^1.0"
  1515. },
  1516. "time": "2021-12-01T01:52:52+00:00",
  1517. "type": "library",
  1518. "installation-source": "dist",
  1519. "autoload": {
  1520. "psr-4": {
  1521. "EasySwoole\\Validate\\": "src/"
  1522. }
  1523. },
  1524. "notification-url": "https://packagist.org/downloads/",
  1525. "license": [
  1526. "Apache-2.0"
  1527. ],
  1528. "authors": [
  1529. {
  1530. "name": "YF",
  1531. "email": "291323003@qq.com"
  1532. }
  1533. ],
  1534. "description": "An efficient swoole framework",
  1535. "homepage": "https://www.easyswoole.com/",
  1536. "keywords": [
  1537. "async",
  1538. "easyswoole",
  1539. "framework",
  1540. "swoole"
  1541. ],
  1542. "support": {
  1543. "issues": "https://github.com/easy-swoole/validate/issues",
  1544. "source": "https://github.com/easy-swoole/validate/tree/2.1.3"
  1545. },
  1546. "install-path": "../easyswoole/validate"
  1547. },
  1548. {
  1549. "name": "flc/alidayu",
  1550. "version": "v2.0.7",
  1551. "version_normalized": "2.0.7.0",
  1552. "source": {
  1553. "type": "git",
  1554. "url": "https://github.com/flc1125/alidayu.git",
  1555. "reference": "8132041a56c6d2d9044bc70c828cec5426954204"
  1556. },
  1557. "dist": {
  1558. "type": "zip",
  1559. "url": "https://api.github.com/repos/flc1125/alidayu/zipball/8132041a56c6d2d9044bc70c828cec5426954204",
  1560. "reference": "8132041a56c6d2d9044bc70c828cec5426954204",
  1561. "shasum": ""
  1562. },
  1563. "require": {
  1564. "php": ">=5.4.0"
  1565. },
  1566. "time": "2019-04-05T16:42:01+00:00",
  1567. "type": "library",
  1568. "installation-source": "dist",
  1569. "autoload": {
  1570. "psr-4": {
  1571. "Flc\\Alidayu\\": "src/Alidayu/"
  1572. }
  1573. },
  1574. "notification-url": "https://packagist.org/downloads/",
  1575. "license": [
  1576. "MIT"
  1577. ],
  1578. "description": "阿里大于(鱼)API-SDK;适用任何PHP项目,包括Laravel、Yii、Thinkphp等...",
  1579. "keywords": [
  1580. "alidayu",
  1581. "flc"
  1582. ],
  1583. "support": {
  1584. "issues": "https://github.com/flc1125/alidayu/issues",
  1585. "source": "https://github.com/flc1125/alidayu/tree/master"
  1586. },
  1587. "install-path": "../flc/alidayu"
  1588. },
  1589. {
  1590. "name": "mrgoon/aliyun-sms",
  1591. "version": "2.0.2",
  1592. "version_normalized": "2.0.2.0",
  1593. "source": {
  1594. "type": "git",
  1595. "url": "https://github.com/MissMyCat/aliyun-sms.git",
  1596. "reference": "521a4f95e556e8833be31bf3aa2a3d18c9b1abbe"
  1597. },
  1598. "dist": {
  1599. "type": "zip",
  1600. "url": "https://api.github.com/repos/MissMyCat/aliyun-sms/zipball/521a4f95e556e8833be31bf3aa2a3d18c9b1abbe",
  1601. "reference": "521a4f95e556e8833be31bf3aa2a3d18c9b1abbe",
  1602. "shasum": ""
  1603. },
  1604. "require": {
  1605. "mrgoon/aliyun-sms-sdk": "1.1.*",
  1606. "php": ">5.3"
  1607. },
  1608. "time": "2017-10-19T08:16:16+00:00",
  1609. "type": "library",
  1610. "installation-source": "dist",
  1611. "autoload": {
  1612. "psr-4": {
  1613. "Mrgoon\\AliSms\\": "src/"
  1614. }
  1615. },
  1616. "notification-url": "https://packagist.org/downloads/",
  1617. "license": [
  1618. "MIT"
  1619. ],
  1620. "authors": [
  1621. {
  1622. "name": "mrgoon",
  1623. "email": "mrgoon@foxmail.com"
  1624. }
  1625. ],
  1626. "description": "阿里云短信服务php调用代码",
  1627. "keywords": [
  1628. "Aliyun-Sms",
  1629. "aliyun",
  1630. "sdk"
  1631. ],
  1632. "support": {
  1633. "issues": "https://github.com/MissMyCat/aliyun-sms/issues",
  1634. "source": "https://github.com/MissMyCat/aliyun-sms/tree/v2.0.2"
  1635. },
  1636. "install-path": "../mrgoon/aliyun-sms"
  1637. },
  1638. {
  1639. "name": "mrgoon/aliyun-sms-sdk",
  1640. "version": "v1.1.2",
  1641. "version_normalized": "1.1.2.0",
  1642. "source": {
  1643. "type": "git",
  1644. "url": "https://github.com/MissMyCat/aliyun-sms-sdk.git",
  1645. "reference": "4f7da60f8d4351d05640d89a5a4f431ece04156c"
  1646. },
  1647. "dist": {
  1648. "type": "zip",
  1649. "url": "https://api.github.com/repos/MissMyCat/aliyun-sms-sdk/zipball/4f7da60f8d4351d05640d89a5a4f431ece04156c",
  1650. "reference": "4f7da60f8d4351d05640d89a5a4f431ece04156c",
  1651. "shasum": ""
  1652. },
  1653. "require": {
  1654. "php": ">5.3"
  1655. },
  1656. "time": "2017-10-19T03:49:51+00:00",
  1657. "type": "library",
  1658. "installation-source": "dist",
  1659. "autoload": {
  1660. "psr-4": {
  1661. "Mrgoon\\AliyunSmsSdk\\": "aliyun-php-sdk-core/",
  1662. "Mrgoon\\Dysmsapi\\Request\\V20170525\\": "Dysmsapi/Request/V20170525"
  1663. }
  1664. },
  1665. "notification-url": "https://packagist.org/downloads/",
  1666. "license": [
  1667. "MIT"
  1668. ],
  1669. "authors": [
  1670. {
  1671. "name": "mrgoon",
  1672. "email": "mrgoon@foxmail.com"
  1673. }
  1674. ],
  1675. "description": "阿里云短信服务核心代码",
  1676. "keywords": [
  1677. "Aliyun-Sms",
  1678. "aliyun",
  1679. "sdk"
  1680. ],
  1681. "support": {
  1682. "issues": "https://github.com/MissMyCat/aliyun-sms-sdk/issues",
  1683. "source": "https://github.com/MissMyCat/aliyun-sms-sdk/tree/v1.1.2"
  1684. },
  1685. "install-path": "../mrgoon/aliyun-sms-sdk"
  1686. },
  1687. {
  1688. "name": "myclabs/deep-copy",
  1689. "version": "1.10.2",
  1690. "version_normalized": "1.10.2.0",
  1691. "source": {
  1692. "type": "git",
  1693. "url": "https://github.com/myclabs/DeepCopy.git",
  1694. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  1695. },
  1696. "dist": {
  1697. "type": "zip",
  1698. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  1699. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  1700. "shasum": ""
  1701. },
  1702. "require": {
  1703. "php": "^7.1 || ^8.0"
  1704. },
  1705. "require-dev": {
  1706. "doctrine/collections": "^1.0",
  1707. "doctrine/common": "^2.6",
  1708. "phpunit/phpunit": "^7.1"
  1709. },
  1710. "time": "2020-11-13T09:40:50+00:00",
  1711. "type": "library",
  1712. "installation-source": "dist",
  1713. "autoload": {
  1714. "files": [
  1715. "src/DeepCopy/deep_copy.php"
  1716. ],
  1717. "psr-4": {
  1718. "DeepCopy\\": "src/DeepCopy/"
  1719. }
  1720. },
  1721. "notification-url": "https://packagist.org/downloads/",
  1722. "license": [
  1723. "MIT"
  1724. ],
  1725. "description": "Create deep copies (clones) of your objects",
  1726. "keywords": [
  1727. "clone",
  1728. "copy",
  1729. "duplicate",
  1730. "object",
  1731. "object graph"
  1732. ],
  1733. "support": {
  1734. "issues": "https://github.com/myclabs/DeepCopy/issues",
  1735. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  1736. },
  1737. "funding": [
  1738. {
  1739. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  1740. "type": "tidelift"
  1741. }
  1742. ],
  1743. "install-path": "../myclabs/deep-copy"
  1744. },
  1745. {
  1746. "name": "nikic/fast-route",
  1747. "version": "v1.3.0",
  1748. "version_normalized": "1.3.0.0",
  1749. "source": {
  1750. "type": "git",
  1751. "url": "https://github.com/nikic/FastRoute.git",
  1752. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  1753. },
  1754. "dist": {
  1755. "type": "zip",
  1756. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  1757. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  1758. "shasum": ""
  1759. },
  1760. "require": {
  1761. "php": ">=5.4.0"
  1762. },
  1763. "require-dev": {
  1764. "phpunit/phpunit": "^4.8.35|~5.7"
  1765. },
  1766. "time": "2018-02-13T20:26:39+00:00",
  1767. "type": "library",
  1768. "installation-source": "dist",
  1769. "autoload": {
  1770. "files": [
  1771. "src/functions.php"
  1772. ],
  1773. "psr-4": {
  1774. "FastRoute\\": "src/"
  1775. }
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "BSD-3-Clause"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "Nikita Popov",
  1784. "email": "nikic@php.net"
  1785. }
  1786. ],
  1787. "description": "Fast request router for PHP",
  1788. "keywords": [
  1789. "router",
  1790. "routing"
  1791. ],
  1792. "support": {
  1793. "issues": "https://github.com/nikic/FastRoute/issues",
  1794. "source": "https://github.com/nikic/FastRoute/tree/master"
  1795. },
  1796. "install-path": "../nikic/fast-route"
  1797. },
  1798. {
  1799. "name": "nikic/php-parser",
  1800. "version": "v4.13.2",
  1801. "version_normalized": "4.13.2.0",
  1802. "source": {
  1803. "type": "git",
  1804. "url": "https://github.com/nikic/PHP-Parser.git",
  1805. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  1806. },
  1807. "dist": {
  1808. "type": "zip",
  1809. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  1810. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  1811. "shasum": ""
  1812. },
  1813. "require": {
  1814. "ext-tokenizer": "*",
  1815. "php": ">=7.0"
  1816. },
  1817. "require-dev": {
  1818. "ircmaxell/php-yacc": "^0.0.7",
  1819. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  1820. },
  1821. "time": "2021-11-30T19:35:32+00:00",
  1822. "bin": [
  1823. "bin/php-parse"
  1824. ],
  1825. "type": "library",
  1826. "extra": {
  1827. "branch-alias": {
  1828. "dev-master": "4.9-dev"
  1829. }
  1830. },
  1831. "installation-source": "dist",
  1832. "autoload": {
  1833. "psr-4": {
  1834. "PhpParser\\": "lib/PhpParser"
  1835. }
  1836. },
  1837. "notification-url": "https://packagist.org/downloads/",
  1838. "license": [
  1839. "BSD-3-Clause"
  1840. ],
  1841. "authors": [
  1842. {
  1843. "name": "Nikita Popov"
  1844. }
  1845. ],
  1846. "description": "A PHP parser written in PHP",
  1847. "keywords": [
  1848. "parser",
  1849. "php"
  1850. ],
  1851. "support": {
  1852. "issues": "https://github.com/nikic/PHP-Parser/issues",
  1853. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  1854. },
  1855. "install-path": "../nikic/php-parser"
  1856. },
  1857. {
  1858. "name": "opis/closure",
  1859. "version": "3.6.3",
  1860. "version_normalized": "3.6.3.0",
  1861. "source": {
  1862. "type": "git",
  1863. "url": "https://github.com/opis/closure.git",
  1864. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  1865. },
  1866. "dist": {
  1867. "type": "zip",
  1868. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  1869. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  1870. "shasum": ""
  1871. },
  1872. "require": {
  1873. "php": "^5.4 || ^7.0 || ^8.0"
  1874. },
  1875. "require-dev": {
  1876. "jeremeamia/superclosure": "^2.0",
  1877. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  1878. },
  1879. "time": "2022-01-27T09:35:39+00:00",
  1880. "type": "library",
  1881. "extra": {
  1882. "branch-alias": {
  1883. "dev-master": "3.6.x-dev"
  1884. }
  1885. },
  1886. "installation-source": "dist",
  1887. "autoload": {
  1888. "psr-4": {
  1889. "Opis\\Closure\\": "src/"
  1890. },
  1891. "files": [
  1892. "functions.php"
  1893. ]
  1894. },
  1895. "notification-url": "https://packagist.org/downloads/",
  1896. "license": [
  1897. "MIT"
  1898. ],
  1899. "authors": [
  1900. {
  1901. "name": "Marius Sarca",
  1902. "email": "marius.sarca@gmail.com"
  1903. },
  1904. {
  1905. "name": "Sorin Sarca",
  1906. "email": "sarca_sorin@hotmail.com"
  1907. }
  1908. ],
  1909. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1910. "homepage": "https://opis.io/closure",
  1911. "keywords": [
  1912. "anonymous functions",
  1913. "closure",
  1914. "function",
  1915. "serializable",
  1916. "serialization",
  1917. "serialize"
  1918. ],
  1919. "support": {
  1920. "issues": "https://github.com/opis/closure/issues",
  1921. "source": "https://github.com/opis/closure/tree/3.6.3"
  1922. },
  1923. "install-path": "../opis/closure"
  1924. },
  1925. {
  1926. "name": "phar-io/manifest",
  1927. "version": "2.0.3",
  1928. "version_normalized": "2.0.3.0",
  1929. "source": {
  1930. "type": "git",
  1931. "url": "https://github.com/phar-io/manifest.git",
  1932. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  1933. },
  1934. "dist": {
  1935. "type": "zip",
  1936. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  1937. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  1938. "shasum": ""
  1939. },
  1940. "require": {
  1941. "ext-dom": "*",
  1942. "ext-phar": "*",
  1943. "ext-xmlwriter": "*",
  1944. "phar-io/version": "^3.0.1",
  1945. "php": "^7.2 || ^8.0"
  1946. },
  1947. "time": "2021-07-20T11:28:43+00:00",
  1948. "type": "library",
  1949. "extra": {
  1950. "branch-alias": {
  1951. "dev-master": "2.0.x-dev"
  1952. }
  1953. },
  1954. "installation-source": "dist",
  1955. "autoload": {
  1956. "classmap": [
  1957. "src/"
  1958. ]
  1959. },
  1960. "notification-url": "https://packagist.org/downloads/",
  1961. "license": [
  1962. "BSD-3-Clause"
  1963. ],
  1964. "authors": [
  1965. {
  1966. "name": "Arne Blankerts",
  1967. "email": "arne@blankerts.de",
  1968. "role": "Developer"
  1969. },
  1970. {
  1971. "name": "Sebastian Heuer",
  1972. "email": "sebastian@phpeople.de",
  1973. "role": "Developer"
  1974. },
  1975. {
  1976. "name": "Sebastian Bergmann",
  1977. "email": "sebastian@phpunit.de",
  1978. "role": "Developer"
  1979. }
  1980. ],
  1981. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  1982. "support": {
  1983. "issues": "https://github.com/phar-io/manifest/issues",
  1984. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  1985. },
  1986. "install-path": "../phar-io/manifest"
  1987. },
  1988. {
  1989. "name": "phar-io/version",
  1990. "version": "3.1.1",
  1991. "version_normalized": "3.1.1.0",
  1992. "source": {
  1993. "type": "git",
  1994. "url": "https://github.com/phar-io/version.git",
  1995. "reference": "15a90844ad40f127afd244c0cad228de2a80052a"
  1996. },
  1997. "dist": {
  1998. "type": "zip",
  1999. "url": "https://api.github.com/repos/phar-io/version/zipball/15a90844ad40f127afd244c0cad228de2a80052a",
  2000. "reference": "15a90844ad40f127afd244c0cad228de2a80052a",
  2001. "shasum": ""
  2002. },
  2003. "require": {
  2004. "php": "^7.2 || ^8.0"
  2005. },
  2006. "time": "2022-02-07T21:56:48+00:00",
  2007. "type": "library",
  2008. "installation-source": "dist",
  2009. "autoload": {
  2010. "classmap": [
  2011. "src/"
  2012. ]
  2013. },
  2014. "notification-url": "https://packagist.org/downloads/",
  2015. "license": [
  2016. "BSD-3-Clause"
  2017. ],
  2018. "authors": [
  2019. {
  2020. "name": "Arne Blankerts",
  2021. "email": "arne@blankerts.de",
  2022. "role": "Developer"
  2023. },
  2024. {
  2025. "name": "Sebastian Heuer",
  2026. "email": "sebastian@phpeople.de",
  2027. "role": "Developer"
  2028. },
  2029. {
  2030. "name": "Sebastian Bergmann",
  2031. "email": "sebastian@phpunit.de",
  2032. "role": "Developer"
  2033. }
  2034. ],
  2035. "description": "Library for handling version information and constraints",
  2036. "support": {
  2037. "issues": "https://github.com/phar-io/version/issues",
  2038. "source": "https://github.com/phar-io/version/tree/3.1.1"
  2039. },
  2040. "install-path": "../phar-io/version"
  2041. },
  2042. {
  2043. "name": "phpdocumentor/reflection-common",
  2044. "version": "2.2.0",
  2045. "version_normalized": "2.2.0.0",
  2046. "source": {
  2047. "type": "git",
  2048. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2049. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2050. },
  2051. "dist": {
  2052. "type": "zip",
  2053. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2054. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2055. "shasum": ""
  2056. },
  2057. "require": {
  2058. "php": "^7.2 || ^8.0"
  2059. },
  2060. "time": "2020-06-27T09:03:43+00:00",
  2061. "type": "library",
  2062. "extra": {
  2063. "branch-alias": {
  2064. "dev-2.x": "2.x-dev"
  2065. }
  2066. },
  2067. "installation-source": "dist",
  2068. "autoload": {
  2069. "psr-4": {
  2070. "phpDocumentor\\Reflection\\": "src/"
  2071. }
  2072. },
  2073. "notification-url": "https://packagist.org/downloads/",
  2074. "license": [
  2075. "MIT"
  2076. ],
  2077. "authors": [
  2078. {
  2079. "name": "Jaap van Otterdijk",
  2080. "email": "opensource@ijaap.nl"
  2081. }
  2082. ],
  2083. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2084. "homepage": "http://www.phpdoc.org",
  2085. "keywords": [
  2086. "FQSEN",
  2087. "phpDocumentor",
  2088. "phpdoc",
  2089. "reflection",
  2090. "static analysis"
  2091. ],
  2092. "support": {
  2093. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2094. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2095. },
  2096. "install-path": "../phpdocumentor/reflection-common"
  2097. },
  2098. {
  2099. "name": "phpdocumentor/reflection-docblock",
  2100. "version": "5.3.0",
  2101. "version_normalized": "5.3.0.0",
  2102. "source": {
  2103. "type": "git",
  2104. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2105. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  2106. },
  2107. "dist": {
  2108. "type": "zip",
  2109. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  2110. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  2111. "shasum": ""
  2112. },
  2113. "require": {
  2114. "ext-filter": "*",
  2115. "php": "^7.2 || ^8.0",
  2116. "phpdocumentor/reflection-common": "^2.2",
  2117. "phpdocumentor/type-resolver": "^1.3",
  2118. "webmozart/assert": "^1.9.1"
  2119. },
  2120. "require-dev": {
  2121. "mockery/mockery": "~1.3.2",
  2122. "psalm/phar": "^4.8"
  2123. },
  2124. "time": "2021-10-19T17:43:47+00:00",
  2125. "type": "library",
  2126. "extra": {
  2127. "branch-alias": {
  2128. "dev-master": "5.x-dev"
  2129. }
  2130. },
  2131. "installation-source": "dist",
  2132. "autoload": {
  2133. "psr-4": {
  2134. "phpDocumentor\\Reflection\\": "src"
  2135. }
  2136. },
  2137. "notification-url": "https://packagist.org/downloads/",
  2138. "license": [
  2139. "MIT"
  2140. ],
  2141. "authors": [
  2142. {
  2143. "name": "Mike van Riel",
  2144. "email": "me@mikevanriel.com"
  2145. },
  2146. {
  2147. "name": "Jaap van Otterdijk",
  2148. "email": "account@ijaap.nl"
  2149. }
  2150. ],
  2151. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2152. "support": {
  2153. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2154. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  2155. },
  2156. "install-path": "../phpdocumentor/reflection-docblock"
  2157. },
  2158. {
  2159. "name": "phpdocumentor/type-resolver",
  2160. "version": "1.6.0",
  2161. "version_normalized": "1.6.0.0",
  2162. "source": {
  2163. "type": "git",
  2164. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2165. "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706"
  2166. },
  2167. "dist": {
  2168. "type": "zip",
  2169. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/93ebd0014cab80c4ea9f5e297ea48672f1b87706",
  2170. "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706",
  2171. "shasum": ""
  2172. },
  2173. "require": {
  2174. "php": "^7.2 || ^8.0",
  2175. "phpdocumentor/reflection-common": "^2.0"
  2176. },
  2177. "require-dev": {
  2178. "ext-tokenizer": "*",
  2179. "psalm/phar": "^4.8"
  2180. },
  2181. "time": "2022-01-04T19:58:01+00:00",
  2182. "type": "library",
  2183. "extra": {
  2184. "branch-alias": {
  2185. "dev-1.x": "1.x-dev"
  2186. }
  2187. },
  2188. "installation-source": "dist",
  2189. "autoload": {
  2190. "psr-4": {
  2191. "phpDocumentor\\Reflection\\": "src"
  2192. }
  2193. },
  2194. "notification-url": "https://packagist.org/downloads/",
  2195. "license": [
  2196. "MIT"
  2197. ],
  2198. "authors": [
  2199. {
  2200. "name": "Mike van Riel",
  2201. "email": "me@mikevanriel.com"
  2202. }
  2203. ],
  2204. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2205. "support": {
  2206. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2207. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.0"
  2208. },
  2209. "install-path": "../phpdocumentor/type-resolver"
  2210. },
  2211. {
  2212. "name": "phpmailer/phpmailer",
  2213. "version": "v6.6.0",
  2214. "version_normalized": "6.6.0.0",
  2215. "source": {
  2216. "type": "git",
  2217. "url": "https://github.com/PHPMailer/PHPMailer.git",
  2218. "reference": "e43bac82edc26ca04b36143a48bde1c051cfd5b1"
  2219. },
  2220. "dist": {
  2221. "type": "zip",
  2222. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e43bac82edc26ca04b36143a48bde1c051cfd5b1",
  2223. "reference": "e43bac82edc26ca04b36143a48bde1c051cfd5b1",
  2224. "shasum": ""
  2225. },
  2226. "require": {
  2227. "ext-ctype": "*",
  2228. "ext-filter": "*",
  2229. "ext-hash": "*",
  2230. "php": ">=5.5.0"
  2231. },
  2232. "require-dev": {
  2233. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2234. "doctrine/annotations": "^1.2",
  2235. "php-parallel-lint/php-console-highlighter": "^0.5.0",
  2236. "php-parallel-lint/php-parallel-lint": "^1.3.1",
  2237. "phpcompatibility/php-compatibility": "^9.3.5",
  2238. "roave/security-advisories": "dev-latest",
  2239. "squizlabs/php_codesniffer": "^3.6.2",
  2240. "yoast/phpunit-polyfills": "^1.0.0"
  2241. },
  2242. "suggest": {
  2243. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  2244. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  2245. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  2246. "psr/log": "For optional PSR-3 debug logging",
  2247. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  2248. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  2249. },
  2250. "time": "2022-02-28T15:31:21+00:00",
  2251. "type": "library",
  2252. "installation-source": "dist",
  2253. "autoload": {
  2254. "psr-4": {
  2255. "PHPMailer\\PHPMailer\\": "src/"
  2256. }
  2257. },
  2258. "notification-url": "https://packagist.org/downloads/",
  2259. "license": [
  2260. "LGPL-2.1-only"
  2261. ],
  2262. "authors": [
  2263. {
  2264. "name": "Marcus Bointon",
  2265. "email": "phpmailer@synchromedia.co.uk"
  2266. },
  2267. {
  2268. "name": "Jim Jagielski",
  2269. "email": "jimjag@gmail.com"
  2270. },
  2271. {
  2272. "name": "Andy Prevost",
  2273. "email": "codeworxtech@users.sourceforge.net"
  2274. },
  2275. {
  2276. "name": "Brent R. Matzelle"
  2277. }
  2278. ],
  2279. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  2280. "support": {
  2281. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  2282. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.6.0"
  2283. },
  2284. "funding": [
  2285. {
  2286. "url": "https://github.com/Synchro",
  2287. "type": "github"
  2288. }
  2289. ],
  2290. "install-path": "../phpmailer/phpmailer"
  2291. },
  2292. {
  2293. "name": "phpspec/prophecy",
  2294. "version": "v1.15.0",
  2295. "version_normalized": "1.15.0.0",
  2296. "source": {
  2297. "type": "git",
  2298. "url": "https://github.com/phpspec/prophecy.git",
  2299. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  2300. },
  2301. "dist": {
  2302. "type": "zip",
  2303. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  2304. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  2305. "shasum": ""
  2306. },
  2307. "require": {
  2308. "doctrine/instantiator": "^1.2",
  2309. "php": "^7.2 || ~8.0, <8.2",
  2310. "phpdocumentor/reflection-docblock": "^5.2",
  2311. "sebastian/comparator": "^3.0 || ^4.0",
  2312. "sebastian/recursion-context": "^3.0 || ^4.0"
  2313. },
  2314. "require-dev": {
  2315. "phpspec/phpspec": "^6.0 || ^7.0",
  2316. "phpunit/phpunit": "^8.0 || ^9.0"
  2317. },
  2318. "time": "2021-12-08T12:19:24+00:00",
  2319. "type": "library",
  2320. "extra": {
  2321. "branch-alias": {
  2322. "dev-master": "1.x-dev"
  2323. }
  2324. },
  2325. "installation-source": "dist",
  2326. "autoload": {
  2327. "psr-4": {
  2328. "Prophecy\\": "src/Prophecy"
  2329. }
  2330. },
  2331. "notification-url": "https://packagist.org/downloads/",
  2332. "license": [
  2333. "MIT"
  2334. ],
  2335. "authors": [
  2336. {
  2337. "name": "Konstantin Kudryashov",
  2338. "email": "ever.zet@gmail.com",
  2339. "homepage": "http://everzet.com"
  2340. },
  2341. {
  2342. "name": "Marcello Duarte",
  2343. "email": "marcello.duarte@gmail.com"
  2344. }
  2345. ],
  2346. "description": "Highly opinionated mocking framework for PHP 5.3+",
  2347. "homepage": "https://github.com/phpspec/prophecy",
  2348. "keywords": [
  2349. "Double",
  2350. "Dummy",
  2351. "fake",
  2352. "mock",
  2353. "spy",
  2354. "stub"
  2355. ],
  2356. "support": {
  2357. "issues": "https://github.com/phpspec/prophecy/issues",
  2358. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  2359. },
  2360. "install-path": "../phpspec/prophecy"
  2361. },
  2362. {
  2363. "name": "phpunit/php-code-coverage",
  2364. "version": "9.2.10",
  2365. "version_normalized": "9.2.10.0",
  2366. "source": {
  2367. "type": "git",
  2368. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  2369. "reference": "d5850aaf931743067f4bfc1ae4cbd06468400687"
  2370. },
  2371. "dist": {
  2372. "type": "zip",
  2373. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/d5850aaf931743067f4bfc1ae4cbd06468400687",
  2374. "reference": "d5850aaf931743067f4bfc1ae4cbd06468400687",
  2375. "shasum": ""
  2376. },
  2377. "require": {
  2378. "ext-dom": "*",
  2379. "ext-libxml": "*",
  2380. "ext-xmlwriter": "*",
  2381. "nikic/php-parser": "^4.13.0",
  2382. "php": ">=7.3",
  2383. "phpunit/php-file-iterator": "^3.0.3",
  2384. "phpunit/php-text-template": "^2.0.2",
  2385. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  2386. "sebastian/complexity": "^2.0",
  2387. "sebastian/environment": "^5.1.2",
  2388. "sebastian/lines-of-code": "^1.0.3",
  2389. "sebastian/version": "^3.0.1",
  2390. "theseer/tokenizer": "^1.2.0"
  2391. },
  2392. "require-dev": {
  2393. "phpunit/phpunit": "^9.3"
  2394. },
  2395. "suggest": {
  2396. "ext-pcov": "*",
  2397. "ext-xdebug": "*"
  2398. },
  2399. "time": "2021-12-05T09:12:13+00:00",
  2400. "type": "library",
  2401. "extra": {
  2402. "branch-alias": {
  2403. "dev-master": "9.2-dev"
  2404. }
  2405. },
  2406. "installation-source": "dist",
  2407. "autoload": {
  2408. "classmap": [
  2409. "src/"
  2410. ]
  2411. },
  2412. "notification-url": "https://packagist.org/downloads/",
  2413. "license": [
  2414. "BSD-3-Clause"
  2415. ],
  2416. "authors": [
  2417. {
  2418. "name": "Sebastian Bergmann",
  2419. "email": "sebastian@phpunit.de",
  2420. "role": "lead"
  2421. }
  2422. ],
  2423. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  2424. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  2425. "keywords": [
  2426. "coverage",
  2427. "testing",
  2428. "xunit"
  2429. ],
  2430. "support": {
  2431. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  2432. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.10"
  2433. },
  2434. "funding": [
  2435. {
  2436. "url": "https://github.com/sebastianbergmann",
  2437. "type": "github"
  2438. }
  2439. ],
  2440. "install-path": "../phpunit/php-code-coverage"
  2441. },
  2442. {
  2443. "name": "phpunit/php-file-iterator",
  2444. "version": "3.0.6",
  2445. "version_normalized": "3.0.6.0",
  2446. "source": {
  2447. "type": "git",
  2448. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  2449. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  2450. },
  2451. "dist": {
  2452. "type": "zip",
  2453. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  2454. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  2455. "shasum": ""
  2456. },
  2457. "require": {
  2458. "php": ">=7.3"
  2459. },
  2460. "require-dev": {
  2461. "phpunit/phpunit": "^9.3"
  2462. },
  2463. "time": "2021-12-02T12:48:52+00:00",
  2464. "type": "library",
  2465. "extra": {
  2466. "branch-alias": {
  2467. "dev-master": "3.0-dev"
  2468. }
  2469. },
  2470. "installation-source": "dist",
  2471. "autoload": {
  2472. "classmap": [
  2473. "src/"
  2474. ]
  2475. },
  2476. "notification-url": "https://packagist.org/downloads/",
  2477. "license": [
  2478. "BSD-3-Clause"
  2479. ],
  2480. "authors": [
  2481. {
  2482. "name": "Sebastian Bergmann",
  2483. "email": "sebastian@phpunit.de",
  2484. "role": "lead"
  2485. }
  2486. ],
  2487. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  2488. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  2489. "keywords": [
  2490. "filesystem",
  2491. "iterator"
  2492. ],
  2493. "support": {
  2494. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  2495. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  2496. },
  2497. "funding": [
  2498. {
  2499. "url": "https://github.com/sebastianbergmann",
  2500. "type": "github"
  2501. }
  2502. ],
  2503. "install-path": "../phpunit/php-file-iterator"
  2504. },
  2505. {
  2506. "name": "phpunit/php-invoker",
  2507. "version": "3.1.1",
  2508. "version_normalized": "3.1.1.0",
  2509. "source": {
  2510. "type": "git",
  2511. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  2512. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  2513. },
  2514. "dist": {
  2515. "type": "zip",
  2516. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  2517. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  2518. "shasum": ""
  2519. },
  2520. "require": {
  2521. "php": ">=7.3"
  2522. },
  2523. "require-dev": {
  2524. "ext-pcntl": "*",
  2525. "phpunit/phpunit": "^9.3"
  2526. },
  2527. "suggest": {
  2528. "ext-pcntl": "*"
  2529. },
  2530. "time": "2020-09-28T05:58:55+00:00",
  2531. "type": "library",
  2532. "extra": {
  2533. "branch-alias": {
  2534. "dev-master": "3.1-dev"
  2535. }
  2536. },
  2537. "installation-source": "dist",
  2538. "autoload": {
  2539. "classmap": [
  2540. "src/"
  2541. ]
  2542. },
  2543. "notification-url": "https://packagist.org/downloads/",
  2544. "license": [
  2545. "BSD-3-Clause"
  2546. ],
  2547. "authors": [
  2548. {
  2549. "name": "Sebastian Bergmann",
  2550. "email": "sebastian@phpunit.de",
  2551. "role": "lead"
  2552. }
  2553. ],
  2554. "description": "Invoke callables with a timeout",
  2555. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  2556. "keywords": [
  2557. "process"
  2558. ],
  2559. "support": {
  2560. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  2561. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  2562. },
  2563. "funding": [
  2564. {
  2565. "url": "https://github.com/sebastianbergmann",
  2566. "type": "github"
  2567. }
  2568. ],
  2569. "install-path": "../phpunit/php-invoker"
  2570. },
  2571. {
  2572. "name": "phpunit/php-text-template",
  2573. "version": "2.0.4",
  2574. "version_normalized": "2.0.4.0",
  2575. "source": {
  2576. "type": "git",
  2577. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  2578. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  2579. },
  2580. "dist": {
  2581. "type": "zip",
  2582. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  2583. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  2584. "shasum": ""
  2585. },
  2586. "require": {
  2587. "php": ">=7.3"
  2588. },
  2589. "require-dev": {
  2590. "phpunit/phpunit": "^9.3"
  2591. },
  2592. "time": "2020-10-26T05:33:50+00:00",
  2593. "type": "library",
  2594. "extra": {
  2595. "branch-alias": {
  2596. "dev-master": "2.0-dev"
  2597. }
  2598. },
  2599. "installation-source": "dist",
  2600. "autoload": {
  2601. "classmap": [
  2602. "src/"
  2603. ]
  2604. },
  2605. "notification-url": "https://packagist.org/downloads/",
  2606. "license": [
  2607. "BSD-3-Clause"
  2608. ],
  2609. "authors": [
  2610. {
  2611. "name": "Sebastian Bergmann",
  2612. "email": "sebastian@phpunit.de",
  2613. "role": "lead"
  2614. }
  2615. ],
  2616. "description": "Simple template engine.",
  2617. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  2618. "keywords": [
  2619. "template"
  2620. ],
  2621. "support": {
  2622. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  2623. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  2624. },
  2625. "funding": [
  2626. {
  2627. "url": "https://github.com/sebastianbergmann",
  2628. "type": "github"
  2629. }
  2630. ],
  2631. "install-path": "../phpunit/php-text-template"
  2632. },
  2633. {
  2634. "name": "phpunit/php-timer",
  2635. "version": "5.0.3",
  2636. "version_normalized": "5.0.3.0",
  2637. "source": {
  2638. "type": "git",
  2639. "url": "https://github.com/sebastianbergmann/php-timer.git",
  2640. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  2641. },
  2642. "dist": {
  2643. "type": "zip",
  2644. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  2645. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  2646. "shasum": ""
  2647. },
  2648. "require": {
  2649. "php": ">=7.3"
  2650. },
  2651. "require-dev": {
  2652. "phpunit/phpunit": "^9.3"
  2653. },
  2654. "time": "2020-10-26T13:16:10+00:00",
  2655. "type": "library",
  2656. "extra": {
  2657. "branch-alias": {
  2658. "dev-master": "5.0-dev"
  2659. }
  2660. },
  2661. "installation-source": "dist",
  2662. "autoload": {
  2663. "classmap": [
  2664. "src/"
  2665. ]
  2666. },
  2667. "notification-url": "https://packagist.org/downloads/",
  2668. "license": [
  2669. "BSD-3-Clause"
  2670. ],
  2671. "authors": [
  2672. {
  2673. "name": "Sebastian Bergmann",
  2674. "email": "sebastian@phpunit.de",
  2675. "role": "lead"
  2676. }
  2677. ],
  2678. "description": "Utility class for timing",
  2679. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  2680. "keywords": [
  2681. "timer"
  2682. ],
  2683. "support": {
  2684. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  2685. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  2686. },
  2687. "funding": [
  2688. {
  2689. "url": "https://github.com/sebastianbergmann",
  2690. "type": "github"
  2691. }
  2692. ],
  2693. "install-path": "../phpunit/php-timer"
  2694. },
  2695. {
  2696. "name": "phpunit/phpunit",
  2697. "version": "9.5.13",
  2698. "version_normalized": "9.5.13.0",
  2699. "source": {
  2700. "type": "git",
  2701. "url": "https://github.com/sebastianbergmann/phpunit.git",
  2702. "reference": "597cb647654ede35e43b137926dfdfef0fb11743"
  2703. },
  2704. "dist": {
  2705. "type": "zip",
  2706. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/597cb647654ede35e43b137926dfdfef0fb11743",
  2707. "reference": "597cb647654ede35e43b137926dfdfef0fb11743",
  2708. "shasum": ""
  2709. },
  2710. "require": {
  2711. "doctrine/instantiator": "^1.3.1",
  2712. "ext-dom": "*",
  2713. "ext-json": "*",
  2714. "ext-libxml": "*",
  2715. "ext-mbstring": "*",
  2716. "ext-xml": "*",
  2717. "ext-xmlwriter": "*",
  2718. "myclabs/deep-copy": "^1.10.1",
  2719. "phar-io/manifest": "^2.0.3",
  2720. "phar-io/version": "^3.0.2",
  2721. "php": ">=7.3",
  2722. "phpspec/prophecy": "^1.12.1",
  2723. "phpunit/php-code-coverage": "^9.2.7",
  2724. "phpunit/php-file-iterator": "^3.0.5",
  2725. "phpunit/php-invoker": "^3.1.1",
  2726. "phpunit/php-text-template": "^2.0.3",
  2727. "phpunit/php-timer": "^5.0.2",
  2728. "sebastian/cli-parser": "^1.0.1",
  2729. "sebastian/code-unit": "^1.0.6",
  2730. "sebastian/comparator": "^4.0.5",
  2731. "sebastian/diff": "^4.0.3",
  2732. "sebastian/environment": "^5.1.3",
  2733. "sebastian/exporter": "^4.0.3",
  2734. "sebastian/global-state": "^5.0.1",
  2735. "sebastian/object-enumerator": "^4.0.3",
  2736. "sebastian/resource-operations": "^3.0.3",
  2737. "sebastian/type": "^2.3.4",
  2738. "sebastian/version": "^3.0.2"
  2739. },
  2740. "require-dev": {
  2741. "ext-pdo": "*",
  2742. "phpspec/prophecy-phpunit": "^2.0.1"
  2743. },
  2744. "suggest": {
  2745. "ext-soap": "*",
  2746. "ext-xdebug": "*"
  2747. },
  2748. "time": "2022-01-24T07:33:35+00:00",
  2749. "bin": [
  2750. "phpunit"
  2751. ],
  2752. "type": "library",
  2753. "extra": {
  2754. "branch-alias": {
  2755. "dev-master": "9.5-dev"
  2756. }
  2757. },
  2758. "installation-source": "dist",
  2759. "autoload": {
  2760. "files": [
  2761. "src/Framework/Assert/Functions.php"
  2762. ],
  2763. "classmap": [
  2764. "src/"
  2765. ]
  2766. },
  2767. "notification-url": "https://packagist.org/downloads/",
  2768. "license": [
  2769. "BSD-3-Clause"
  2770. ],
  2771. "authors": [
  2772. {
  2773. "name": "Sebastian Bergmann",
  2774. "email": "sebastian@phpunit.de",
  2775. "role": "lead"
  2776. }
  2777. ],
  2778. "description": "The PHP Unit Testing framework.",
  2779. "homepage": "https://phpunit.de/",
  2780. "keywords": [
  2781. "phpunit",
  2782. "testing",
  2783. "xunit"
  2784. ],
  2785. "support": {
  2786. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  2787. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.13"
  2788. },
  2789. "funding": [
  2790. {
  2791. "url": "https://phpunit.de/sponsors.html",
  2792. "type": "custom"
  2793. },
  2794. {
  2795. "url": "https://github.com/sebastianbergmann",
  2796. "type": "github"
  2797. }
  2798. ],
  2799. "install-path": "../phpunit/phpunit"
  2800. },
  2801. {
  2802. "name": "psr/http-message",
  2803. "version": "1.0.1",
  2804. "version_normalized": "1.0.1.0",
  2805. "source": {
  2806. "type": "git",
  2807. "url": "https://github.com/php-fig/http-message.git",
  2808. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2809. },
  2810. "dist": {
  2811. "type": "zip",
  2812. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2813. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2814. "shasum": ""
  2815. },
  2816. "require": {
  2817. "php": ">=5.3.0"
  2818. },
  2819. "time": "2016-08-06T14:39:51+00:00",
  2820. "type": "library",
  2821. "extra": {
  2822. "branch-alias": {
  2823. "dev-master": "1.0.x-dev"
  2824. }
  2825. },
  2826. "installation-source": "dist",
  2827. "autoload": {
  2828. "psr-4": {
  2829. "Psr\\Http\\Message\\": "src/"
  2830. }
  2831. },
  2832. "notification-url": "https://packagist.org/downloads/",
  2833. "license": [
  2834. "MIT"
  2835. ],
  2836. "authors": [
  2837. {
  2838. "name": "PHP-FIG",
  2839. "homepage": "http://www.php-fig.org/"
  2840. }
  2841. ],
  2842. "description": "Common interface for HTTP messages",
  2843. "homepage": "https://github.com/php-fig/http-message",
  2844. "keywords": [
  2845. "http",
  2846. "http-message",
  2847. "psr",
  2848. "psr-7",
  2849. "request",
  2850. "response"
  2851. ],
  2852. "support": {
  2853. "source": "https://github.com/php-fig/http-message/tree/master"
  2854. },
  2855. "install-path": "../psr/http-message"
  2856. },
  2857. {
  2858. "name": "sebastian/cli-parser",
  2859. "version": "1.0.1",
  2860. "version_normalized": "1.0.1.0",
  2861. "source": {
  2862. "type": "git",
  2863. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  2864. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  2865. },
  2866. "dist": {
  2867. "type": "zip",
  2868. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  2869. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  2870. "shasum": ""
  2871. },
  2872. "require": {
  2873. "php": ">=7.3"
  2874. },
  2875. "require-dev": {
  2876. "phpunit/phpunit": "^9.3"
  2877. },
  2878. "time": "2020-09-28T06:08:49+00:00",
  2879. "type": "library",
  2880. "extra": {
  2881. "branch-alias": {
  2882. "dev-master": "1.0-dev"
  2883. }
  2884. },
  2885. "installation-source": "dist",
  2886. "autoload": {
  2887. "classmap": [
  2888. "src/"
  2889. ]
  2890. },
  2891. "notification-url": "https://packagist.org/downloads/",
  2892. "license": [
  2893. "BSD-3-Clause"
  2894. ],
  2895. "authors": [
  2896. {
  2897. "name": "Sebastian Bergmann",
  2898. "email": "sebastian@phpunit.de",
  2899. "role": "lead"
  2900. }
  2901. ],
  2902. "description": "Library for parsing CLI options",
  2903. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  2904. "support": {
  2905. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  2906. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  2907. },
  2908. "funding": [
  2909. {
  2910. "url": "https://github.com/sebastianbergmann",
  2911. "type": "github"
  2912. }
  2913. ],
  2914. "install-path": "../sebastian/cli-parser"
  2915. },
  2916. {
  2917. "name": "sebastian/code-unit",
  2918. "version": "1.0.8",
  2919. "version_normalized": "1.0.8.0",
  2920. "source": {
  2921. "type": "git",
  2922. "url": "https://github.com/sebastianbergmann/code-unit.git",
  2923. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  2924. },
  2925. "dist": {
  2926. "type": "zip",
  2927. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  2928. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  2929. "shasum": ""
  2930. },
  2931. "require": {
  2932. "php": ">=7.3"
  2933. },
  2934. "require-dev": {
  2935. "phpunit/phpunit": "^9.3"
  2936. },
  2937. "time": "2020-10-26T13:08:54+00:00",
  2938. "type": "library",
  2939. "extra": {
  2940. "branch-alias": {
  2941. "dev-master": "1.0-dev"
  2942. }
  2943. },
  2944. "installation-source": "dist",
  2945. "autoload": {
  2946. "classmap": [
  2947. "src/"
  2948. ]
  2949. },
  2950. "notification-url": "https://packagist.org/downloads/",
  2951. "license": [
  2952. "BSD-3-Clause"
  2953. ],
  2954. "authors": [
  2955. {
  2956. "name": "Sebastian Bergmann",
  2957. "email": "sebastian@phpunit.de",
  2958. "role": "lead"
  2959. }
  2960. ],
  2961. "description": "Collection of value objects that represent the PHP code units",
  2962. "homepage": "https://github.com/sebastianbergmann/code-unit",
  2963. "support": {
  2964. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  2965. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  2966. },
  2967. "funding": [
  2968. {
  2969. "url": "https://github.com/sebastianbergmann",
  2970. "type": "github"
  2971. }
  2972. ],
  2973. "install-path": "../sebastian/code-unit"
  2974. },
  2975. {
  2976. "name": "sebastian/code-unit-reverse-lookup",
  2977. "version": "2.0.3",
  2978. "version_normalized": "2.0.3.0",
  2979. "source": {
  2980. "type": "git",
  2981. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  2982. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  2983. },
  2984. "dist": {
  2985. "type": "zip",
  2986. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  2987. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  2988. "shasum": ""
  2989. },
  2990. "require": {
  2991. "php": ">=7.3"
  2992. },
  2993. "require-dev": {
  2994. "phpunit/phpunit": "^9.3"
  2995. },
  2996. "time": "2020-09-28T05:30:19+00:00",
  2997. "type": "library",
  2998. "extra": {
  2999. "branch-alias": {
  3000. "dev-master": "2.0-dev"
  3001. }
  3002. },
  3003. "installation-source": "dist",
  3004. "autoload": {
  3005. "classmap": [
  3006. "src/"
  3007. ]
  3008. },
  3009. "notification-url": "https://packagist.org/downloads/",
  3010. "license": [
  3011. "BSD-3-Clause"
  3012. ],
  3013. "authors": [
  3014. {
  3015. "name": "Sebastian Bergmann",
  3016. "email": "sebastian@phpunit.de"
  3017. }
  3018. ],
  3019. "description": "Looks up which function or method a line of code belongs to",
  3020. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  3021. "support": {
  3022. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  3023. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  3024. },
  3025. "funding": [
  3026. {
  3027. "url": "https://github.com/sebastianbergmann",
  3028. "type": "github"
  3029. }
  3030. ],
  3031. "install-path": "../sebastian/code-unit-reverse-lookup"
  3032. },
  3033. {
  3034. "name": "sebastian/comparator",
  3035. "version": "4.0.6",
  3036. "version_normalized": "4.0.6.0",
  3037. "source": {
  3038. "type": "git",
  3039. "url": "https://github.com/sebastianbergmann/comparator.git",
  3040. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  3041. },
  3042. "dist": {
  3043. "type": "zip",
  3044. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  3045. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  3046. "shasum": ""
  3047. },
  3048. "require": {
  3049. "php": ">=7.3",
  3050. "sebastian/diff": "^4.0",
  3051. "sebastian/exporter": "^4.0"
  3052. },
  3053. "require-dev": {
  3054. "phpunit/phpunit": "^9.3"
  3055. },
  3056. "time": "2020-10-26T15:49:45+00:00",
  3057. "type": "library",
  3058. "extra": {
  3059. "branch-alias": {
  3060. "dev-master": "4.0-dev"
  3061. }
  3062. },
  3063. "installation-source": "dist",
  3064. "autoload": {
  3065. "classmap": [
  3066. "src/"
  3067. ]
  3068. },
  3069. "notification-url": "https://packagist.org/downloads/",
  3070. "license": [
  3071. "BSD-3-Clause"
  3072. ],
  3073. "authors": [
  3074. {
  3075. "name": "Sebastian Bergmann",
  3076. "email": "sebastian@phpunit.de"
  3077. },
  3078. {
  3079. "name": "Jeff Welch",
  3080. "email": "whatthejeff@gmail.com"
  3081. },
  3082. {
  3083. "name": "Volker Dusch",
  3084. "email": "github@wallbash.com"
  3085. },
  3086. {
  3087. "name": "Bernhard Schussek",
  3088. "email": "bschussek@2bepublished.at"
  3089. }
  3090. ],
  3091. "description": "Provides the functionality to compare PHP values for equality",
  3092. "homepage": "https://github.com/sebastianbergmann/comparator",
  3093. "keywords": [
  3094. "comparator",
  3095. "compare",
  3096. "equality"
  3097. ],
  3098. "support": {
  3099. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  3100. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  3101. },
  3102. "funding": [
  3103. {
  3104. "url": "https://github.com/sebastianbergmann",
  3105. "type": "github"
  3106. }
  3107. ],
  3108. "install-path": "../sebastian/comparator"
  3109. },
  3110. {
  3111. "name": "sebastian/complexity",
  3112. "version": "2.0.2",
  3113. "version_normalized": "2.0.2.0",
  3114. "source": {
  3115. "type": "git",
  3116. "url": "https://github.com/sebastianbergmann/complexity.git",
  3117. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  3118. },
  3119. "dist": {
  3120. "type": "zip",
  3121. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  3122. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  3123. "shasum": ""
  3124. },
  3125. "require": {
  3126. "nikic/php-parser": "^4.7",
  3127. "php": ">=7.3"
  3128. },
  3129. "require-dev": {
  3130. "phpunit/phpunit": "^9.3"
  3131. },
  3132. "time": "2020-10-26T15:52:27+00:00",
  3133. "type": "library",
  3134. "extra": {
  3135. "branch-alias": {
  3136. "dev-master": "2.0-dev"
  3137. }
  3138. },
  3139. "installation-source": "dist",
  3140. "autoload": {
  3141. "classmap": [
  3142. "src/"
  3143. ]
  3144. },
  3145. "notification-url": "https://packagist.org/downloads/",
  3146. "license": [
  3147. "BSD-3-Clause"
  3148. ],
  3149. "authors": [
  3150. {
  3151. "name": "Sebastian Bergmann",
  3152. "email": "sebastian@phpunit.de",
  3153. "role": "lead"
  3154. }
  3155. ],
  3156. "description": "Library for calculating the complexity of PHP code units",
  3157. "homepage": "https://github.com/sebastianbergmann/complexity",
  3158. "support": {
  3159. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  3160. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  3161. },
  3162. "funding": [
  3163. {
  3164. "url": "https://github.com/sebastianbergmann",
  3165. "type": "github"
  3166. }
  3167. ],
  3168. "install-path": "../sebastian/complexity"
  3169. },
  3170. {
  3171. "name": "sebastian/diff",
  3172. "version": "4.0.4",
  3173. "version_normalized": "4.0.4.0",
  3174. "source": {
  3175. "type": "git",
  3176. "url": "https://github.com/sebastianbergmann/diff.git",
  3177. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  3178. },
  3179. "dist": {
  3180. "type": "zip",
  3181. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  3182. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  3183. "shasum": ""
  3184. },
  3185. "require": {
  3186. "php": ">=7.3"
  3187. },
  3188. "require-dev": {
  3189. "phpunit/phpunit": "^9.3",
  3190. "symfony/process": "^4.2 || ^5"
  3191. },
  3192. "time": "2020-10-26T13:10:38+00:00",
  3193. "type": "library",
  3194. "extra": {
  3195. "branch-alias": {
  3196. "dev-master": "4.0-dev"
  3197. }
  3198. },
  3199. "installation-source": "dist",
  3200. "autoload": {
  3201. "classmap": [
  3202. "src/"
  3203. ]
  3204. },
  3205. "notification-url": "https://packagist.org/downloads/",
  3206. "license": [
  3207. "BSD-3-Clause"
  3208. ],
  3209. "authors": [
  3210. {
  3211. "name": "Sebastian Bergmann",
  3212. "email": "sebastian@phpunit.de"
  3213. },
  3214. {
  3215. "name": "Kore Nordmann",
  3216. "email": "mail@kore-nordmann.de"
  3217. }
  3218. ],
  3219. "description": "Diff implementation",
  3220. "homepage": "https://github.com/sebastianbergmann/diff",
  3221. "keywords": [
  3222. "diff",
  3223. "udiff",
  3224. "unidiff",
  3225. "unified diff"
  3226. ],
  3227. "support": {
  3228. "issues": "https://github.com/sebastianbergmann/diff/issues",
  3229. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  3230. },
  3231. "funding": [
  3232. {
  3233. "url": "https://github.com/sebastianbergmann",
  3234. "type": "github"
  3235. }
  3236. ],
  3237. "install-path": "../sebastian/diff"
  3238. },
  3239. {
  3240. "name": "sebastian/environment",
  3241. "version": "5.1.3",
  3242. "version_normalized": "5.1.3.0",
  3243. "source": {
  3244. "type": "git",
  3245. "url": "https://github.com/sebastianbergmann/environment.git",
  3246. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  3247. },
  3248. "dist": {
  3249. "type": "zip",
  3250. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  3251. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  3252. "shasum": ""
  3253. },
  3254. "require": {
  3255. "php": ">=7.3"
  3256. },
  3257. "require-dev": {
  3258. "phpunit/phpunit": "^9.3"
  3259. },
  3260. "suggest": {
  3261. "ext-posix": "*"
  3262. },
  3263. "time": "2020-09-28T05:52:38+00:00",
  3264. "type": "library",
  3265. "extra": {
  3266. "branch-alias": {
  3267. "dev-master": "5.1-dev"
  3268. }
  3269. },
  3270. "installation-source": "dist",
  3271. "autoload": {
  3272. "classmap": [
  3273. "src/"
  3274. ]
  3275. },
  3276. "notification-url": "https://packagist.org/downloads/",
  3277. "license": [
  3278. "BSD-3-Clause"
  3279. ],
  3280. "authors": [
  3281. {
  3282. "name": "Sebastian Bergmann",
  3283. "email": "sebastian@phpunit.de"
  3284. }
  3285. ],
  3286. "description": "Provides functionality to handle HHVM/PHP environments",
  3287. "homepage": "http://www.github.com/sebastianbergmann/environment",
  3288. "keywords": [
  3289. "Xdebug",
  3290. "environment",
  3291. "hhvm"
  3292. ],
  3293. "support": {
  3294. "issues": "https://github.com/sebastianbergmann/environment/issues",
  3295. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  3296. },
  3297. "funding": [
  3298. {
  3299. "url": "https://github.com/sebastianbergmann",
  3300. "type": "github"
  3301. }
  3302. ],
  3303. "install-path": "../sebastian/environment"
  3304. },
  3305. {
  3306. "name": "sebastian/exporter",
  3307. "version": "4.0.4",
  3308. "version_normalized": "4.0.4.0",
  3309. "source": {
  3310. "type": "git",
  3311. "url": "https://github.com/sebastianbergmann/exporter.git",
  3312. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  3313. },
  3314. "dist": {
  3315. "type": "zip",
  3316. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  3317. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  3318. "shasum": ""
  3319. },
  3320. "require": {
  3321. "php": ">=7.3",
  3322. "sebastian/recursion-context": "^4.0"
  3323. },
  3324. "require-dev": {
  3325. "ext-mbstring": "*",
  3326. "phpunit/phpunit": "^9.3"
  3327. },
  3328. "time": "2021-11-11T14:18:36+00:00",
  3329. "type": "library",
  3330. "extra": {
  3331. "branch-alias": {
  3332. "dev-master": "4.0-dev"
  3333. }
  3334. },
  3335. "installation-source": "dist",
  3336. "autoload": {
  3337. "classmap": [
  3338. "src/"
  3339. ]
  3340. },
  3341. "notification-url": "https://packagist.org/downloads/",
  3342. "license": [
  3343. "BSD-3-Clause"
  3344. ],
  3345. "authors": [
  3346. {
  3347. "name": "Sebastian Bergmann",
  3348. "email": "sebastian@phpunit.de"
  3349. },
  3350. {
  3351. "name": "Jeff Welch",
  3352. "email": "whatthejeff@gmail.com"
  3353. },
  3354. {
  3355. "name": "Volker Dusch",
  3356. "email": "github@wallbash.com"
  3357. },
  3358. {
  3359. "name": "Adam Harvey",
  3360. "email": "aharvey@php.net"
  3361. },
  3362. {
  3363. "name": "Bernhard Schussek",
  3364. "email": "bschussek@gmail.com"
  3365. }
  3366. ],
  3367. "description": "Provides the functionality to export PHP variables for visualization",
  3368. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  3369. "keywords": [
  3370. "export",
  3371. "exporter"
  3372. ],
  3373. "support": {
  3374. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  3375. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  3376. },
  3377. "funding": [
  3378. {
  3379. "url": "https://github.com/sebastianbergmann",
  3380. "type": "github"
  3381. }
  3382. ],
  3383. "install-path": "../sebastian/exporter"
  3384. },
  3385. {
  3386. "name": "sebastian/global-state",
  3387. "version": "5.0.5",
  3388. "version_normalized": "5.0.5.0",
  3389. "source": {
  3390. "type": "git",
  3391. "url": "https://github.com/sebastianbergmann/global-state.git",
  3392. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  3393. },
  3394. "dist": {
  3395. "type": "zip",
  3396. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  3397. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  3398. "shasum": ""
  3399. },
  3400. "require": {
  3401. "php": ">=7.3",
  3402. "sebastian/object-reflector": "^2.0",
  3403. "sebastian/recursion-context": "^4.0"
  3404. },
  3405. "require-dev": {
  3406. "ext-dom": "*",
  3407. "phpunit/phpunit": "^9.3"
  3408. },
  3409. "suggest": {
  3410. "ext-uopz": "*"
  3411. },
  3412. "time": "2022-02-14T08:28:10+00:00",
  3413. "type": "library",
  3414. "extra": {
  3415. "branch-alias": {
  3416. "dev-master": "5.0-dev"
  3417. }
  3418. },
  3419. "installation-source": "dist",
  3420. "autoload": {
  3421. "classmap": [
  3422. "src/"
  3423. ]
  3424. },
  3425. "notification-url": "https://packagist.org/downloads/",
  3426. "license": [
  3427. "BSD-3-Clause"
  3428. ],
  3429. "authors": [
  3430. {
  3431. "name": "Sebastian Bergmann",
  3432. "email": "sebastian@phpunit.de"
  3433. }
  3434. ],
  3435. "description": "Snapshotting of global state",
  3436. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  3437. "keywords": [
  3438. "global state"
  3439. ],
  3440. "support": {
  3441. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  3442. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  3443. },
  3444. "funding": [
  3445. {
  3446. "url": "https://github.com/sebastianbergmann",
  3447. "type": "github"
  3448. }
  3449. ],
  3450. "install-path": "../sebastian/global-state"
  3451. },
  3452. {
  3453. "name": "sebastian/lines-of-code",
  3454. "version": "1.0.3",
  3455. "version_normalized": "1.0.3.0",
  3456. "source": {
  3457. "type": "git",
  3458. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  3459. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  3460. },
  3461. "dist": {
  3462. "type": "zip",
  3463. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  3464. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  3465. "shasum": ""
  3466. },
  3467. "require": {
  3468. "nikic/php-parser": "^4.6",
  3469. "php": ">=7.3"
  3470. },
  3471. "require-dev": {
  3472. "phpunit/phpunit": "^9.3"
  3473. },
  3474. "time": "2020-11-28T06:42:11+00:00",
  3475. "type": "library",
  3476. "extra": {
  3477. "branch-alias": {
  3478. "dev-master": "1.0-dev"
  3479. }
  3480. },
  3481. "installation-source": "dist",
  3482. "autoload": {
  3483. "classmap": [
  3484. "src/"
  3485. ]
  3486. },
  3487. "notification-url": "https://packagist.org/downloads/",
  3488. "license": [
  3489. "BSD-3-Clause"
  3490. ],
  3491. "authors": [
  3492. {
  3493. "name": "Sebastian Bergmann",
  3494. "email": "sebastian@phpunit.de",
  3495. "role": "lead"
  3496. }
  3497. ],
  3498. "description": "Library for counting the lines of code in PHP source code",
  3499. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  3500. "support": {
  3501. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  3502. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  3503. },
  3504. "funding": [
  3505. {
  3506. "url": "https://github.com/sebastianbergmann",
  3507. "type": "github"
  3508. }
  3509. ],
  3510. "install-path": "../sebastian/lines-of-code"
  3511. },
  3512. {
  3513. "name": "sebastian/object-enumerator",
  3514. "version": "4.0.4",
  3515. "version_normalized": "4.0.4.0",
  3516. "source": {
  3517. "type": "git",
  3518. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  3519. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  3520. },
  3521. "dist": {
  3522. "type": "zip",
  3523. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  3524. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  3525. "shasum": ""
  3526. },
  3527. "require": {
  3528. "php": ">=7.3",
  3529. "sebastian/object-reflector": "^2.0",
  3530. "sebastian/recursion-context": "^4.0"
  3531. },
  3532. "require-dev": {
  3533. "phpunit/phpunit": "^9.3"
  3534. },
  3535. "time": "2020-10-26T13:12:34+00:00",
  3536. "type": "library",
  3537. "extra": {
  3538. "branch-alias": {
  3539. "dev-master": "4.0-dev"
  3540. }
  3541. },
  3542. "installation-source": "dist",
  3543. "autoload": {
  3544. "classmap": [
  3545. "src/"
  3546. ]
  3547. },
  3548. "notification-url": "https://packagist.org/downloads/",
  3549. "license": [
  3550. "BSD-3-Clause"
  3551. ],
  3552. "authors": [
  3553. {
  3554. "name": "Sebastian Bergmann",
  3555. "email": "sebastian@phpunit.de"
  3556. }
  3557. ],
  3558. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  3559. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  3560. "support": {
  3561. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  3562. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  3563. },
  3564. "funding": [
  3565. {
  3566. "url": "https://github.com/sebastianbergmann",
  3567. "type": "github"
  3568. }
  3569. ],
  3570. "install-path": "../sebastian/object-enumerator"
  3571. },
  3572. {
  3573. "name": "sebastian/object-reflector",
  3574. "version": "2.0.4",
  3575. "version_normalized": "2.0.4.0",
  3576. "source": {
  3577. "type": "git",
  3578. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  3579. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  3580. },
  3581. "dist": {
  3582. "type": "zip",
  3583. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  3584. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  3585. "shasum": ""
  3586. },
  3587. "require": {
  3588. "php": ">=7.3"
  3589. },
  3590. "require-dev": {
  3591. "phpunit/phpunit": "^9.3"
  3592. },
  3593. "time": "2020-10-26T13:14:26+00:00",
  3594. "type": "library",
  3595. "extra": {
  3596. "branch-alias": {
  3597. "dev-master": "2.0-dev"
  3598. }
  3599. },
  3600. "installation-source": "dist",
  3601. "autoload": {
  3602. "classmap": [
  3603. "src/"
  3604. ]
  3605. },
  3606. "notification-url": "https://packagist.org/downloads/",
  3607. "license": [
  3608. "BSD-3-Clause"
  3609. ],
  3610. "authors": [
  3611. {
  3612. "name": "Sebastian Bergmann",
  3613. "email": "sebastian@phpunit.de"
  3614. }
  3615. ],
  3616. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  3617. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  3618. "support": {
  3619. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  3620. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  3621. },
  3622. "funding": [
  3623. {
  3624. "url": "https://github.com/sebastianbergmann",
  3625. "type": "github"
  3626. }
  3627. ],
  3628. "install-path": "../sebastian/object-reflector"
  3629. },
  3630. {
  3631. "name": "sebastian/recursion-context",
  3632. "version": "4.0.4",
  3633. "version_normalized": "4.0.4.0",
  3634. "source": {
  3635. "type": "git",
  3636. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  3637. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  3638. },
  3639. "dist": {
  3640. "type": "zip",
  3641. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  3642. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  3643. "shasum": ""
  3644. },
  3645. "require": {
  3646. "php": ">=7.3"
  3647. },
  3648. "require-dev": {
  3649. "phpunit/phpunit": "^9.3"
  3650. },
  3651. "time": "2020-10-26T13:17:30+00:00",
  3652. "type": "library",
  3653. "extra": {
  3654. "branch-alias": {
  3655. "dev-master": "4.0-dev"
  3656. }
  3657. },
  3658. "installation-source": "dist",
  3659. "autoload": {
  3660. "classmap": [
  3661. "src/"
  3662. ]
  3663. },
  3664. "notification-url": "https://packagist.org/downloads/",
  3665. "license": [
  3666. "BSD-3-Clause"
  3667. ],
  3668. "authors": [
  3669. {
  3670. "name": "Sebastian Bergmann",
  3671. "email": "sebastian@phpunit.de"
  3672. },
  3673. {
  3674. "name": "Jeff Welch",
  3675. "email": "whatthejeff@gmail.com"
  3676. },
  3677. {
  3678. "name": "Adam Harvey",
  3679. "email": "aharvey@php.net"
  3680. }
  3681. ],
  3682. "description": "Provides functionality to recursively process PHP variables",
  3683. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  3684. "support": {
  3685. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  3686. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  3687. },
  3688. "funding": [
  3689. {
  3690. "url": "https://github.com/sebastianbergmann",
  3691. "type": "github"
  3692. }
  3693. ],
  3694. "install-path": "../sebastian/recursion-context"
  3695. },
  3696. {
  3697. "name": "sebastian/resource-operations",
  3698. "version": "3.0.3",
  3699. "version_normalized": "3.0.3.0",
  3700. "source": {
  3701. "type": "git",
  3702. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  3703. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  3704. },
  3705. "dist": {
  3706. "type": "zip",
  3707. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  3708. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  3709. "shasum": ""
  3710. },
  3711. "require": {
  3712. "php": ">=7.3"
  3713. },
  3714. "require-dev": {
  3715. "phpunit/phpunit": "^9.0"
  3716. },
  3717. "time": "2020-09-28T06:45:17+00:00",
  3718. "type": "library",
  3719. "extra": {
  3720. "branch-alias": {
  3721. "dev-master": "3.0-dev"
  3722. }
  3723. },
  3724. "installation-source": "dist",
  3725. "autoload": {
  3726. "classmap": [
  3727. "src/"
  3728. ]
  3729. },
  3730. "notification-url": "https://packagist.org/downloads/",
  3731. "license": [
  3732. "BSD-3-Clause"
  3733. ],
  3734. "authors": [
  3735. {
  3736. "name": "Sebastian Bergmann",
  3737. "email": "sebastian@phpunit.de"
  3738. }
  3739. ],
  3740. "description": "Provides a list of PHP built-in functions that operate on resources",
  3741. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  3742. "support": {
  3743. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  3744. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  3745. },
  3746. "funding": [
  3747. {
  3748. "url": "https://github.com/sebastianbergmann",
  3749. "type": "github"
  3750. }
  3751. ],
  3752. "install-path": "../sebastian/resource-operations"
  3753. },
  3754. {
  3755. "name": "sebastian/type",
  3756. "version": "2.3.4",
  3757. "version_normalized": "2.3.4.0",
  3758. "source": {
  3759. "type": "git",
  3760. "url": "https://github.com/sebastianbergmann/type.git",
  3761. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914"
  3762. },
  3763. "dist": {
  3764. "type": "zip",
  3765. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  3766. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  3767. "shasum": ""
  3768. },
  3769. "require": {
  3770. "php": ">=7.3"
  3771. },
  3772. "require-dev": {
  3773. "phpunit/phpunit": "^9.3"
  3774. },
  3775. "time": "2021-06-15T12:49:02+00:00",
  3776. "type": "library",
  3777. "extra": {
  3778. "branch-alias": {
  3779. "dev-master": "2.3-dev"
  3780. }
  3781. },
  3782. "installation-source": "dist",
  3783. "autoload": {
  3784. "classmap": [
  3785. "src/"
  3786. ]
  3787. },
  3788. "notification-url": "https://packagist.org/downloads/",
  3789. "license": [
  3790. "BSD-3-Clause"
  3791. ],
  3792. "authors": [
  3793. {
  3794. "name": "Sebastian Bergmann",
  3795. "email": "sebastian@phpunit.de",
  3796. "role": "lead"
  3797. }
  3798. ],
  3799. "description": "Collection of value objects that represent the types of the PHP type system",
  3800. "homepage": "https://github.com/sebastianbergmann/type",
  3801. "support": {
  3802. "issues": "https://github.com/sebastianbergmann/type/issues",
  3803. "source": "https://github.com/sebastianbergmann/type/tree/2.3.4"
  3804. },
  3805. "funding": [
  3806. {
  3807. "url": "https://github.com/sebastianbergmann",
  3808. "type": "github"
  3809. }
  3810. ],
  3811. "install-path": "../sebastian/type"
  3812. },
  3813. {
  3814. "name": "sebastian/version",
  3815. "version": "3.0.2",
  3816. "version_normalized": "3.0.2.0",
  3817. "source": {
  3818. "type": "git",
  3819. "url": "https://github.com/sebastianbergmann/version.git",
  3820. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  3821. },
  3822. "dist": {
  3823. "type": "zip",
  3824. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  3825. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  3826. "shasum": ""
  3827. },
  3828. "require": {
  3829. "php": ">=7.3"
  3830. },
  3831. "time": "2020-09-28T06:39:44+00:00",
  3832. "type": "library",
  3833. "extra": {
  3834. "branch-alias": {
  3835. "dev-master": "3.0-dev"
  3836. }
  3837. },
  3838. "installation-source": "dist",
  3839. "autoload": {
  3840. "classmap": [
  3841. "src/"
  3842. ]
  3843. },
  3844. "notification-url": "https://packagist.org/downloads/",
  3845. "license": [
  3846. "BSD-3-Clause"
  3847. ],
  3848. "authors": [
  3849. {
  3850. "name": "Sebastian Bergmann",
  3851. "email": "sebastian@phpunit.de",
  3852. "role": "lead"
  3853. }
  3854. ],
  3855. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  3856. "homepage": "https://github.com/sebastianbergmann/version",
  3857. "support": {
  3858. "issues": "https://github.com/sebastianbergmann/version/issues",
  3859. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  3860. },
  3861. "funding": [
  3862. {
  3863. "url": "https://github.com/sebastianbergmann",
  3864. "type": "github"
  3865. }
  3866. ],
  3867. "install-path": "../sebastian/version"
  3868. },
  3869. {
  3870. "name": "symfony/polyfill-ctype",
  3871. "version": "v1.24.0",
  3872. "version_normalized": "1.24.0.0",
  3873. "source": {
  3874. "type": "git",
  3875. "url": "https://github.com/symfony/polyfill-ctype.git",
  3876. "reference": "30885182c981ab175d4d034db0f6f469898070ab"
  3877. },
  3878. "dist": {
  3879. "type": "zip",
  3880. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
  3881. "reference": "30885182c981ab175d4d034db0f6f469898070ab",
  3882. "shasum": ""
  3883. },
  3884. "require": {
  3885. "php": ">=7.1"
  3886. },
  3887. "provide": {
  3888. "ext-ctype": "*"
  3889. },
  3890. "suggest": {
  3891. "ext-ctype": "For best performance"
  3892. },
  3893. "time": "2021-10-20T20:35:02+00:00",
  3894. "type": "library",
  3895. "extra": {
  3896. "branch-alias": {
  3897. "dev-main": "1.23-dev"
  3898. },
  3899. "thanks": {
  3900. "name": "symfony/polyfill",
  3901. "url": "https://github.com/symfony/polyfill"
  3902. }
  3903. },
  3904. "installation-source": "dist",
  3905. "autoload": {
  3906. "psr-4": {
  3907. "Symfony\\Polyfill\\Ctype\\": ""
  3908. },
  3909. "files": [
  3910. "bootstrap.php"
  3911. ]
  3912. },
  3913. "notification-url": "https://packagist.org/downloads/",
  3914. "license": [
  3915. "MIT"
  3916. ],
  3917. "authors": [
  3918. {
  3919. "name": "Gert de Pagter",
  3920. "email": "BackEndTea@gmail.com"
  3921. },
  3922. {
  3923. "name": "Symfony Community",
  3924. "homepage": "https://symfony.com/contributors"
  3925. }
  3926. ],
  3927. "description": "Symfony polyfill for ctype functions",
  3928. "homepage": "https://symfony.com",
  3929. "keywords": [
  3930. "compatibility",
  3931. "ctype",
  3932. "polyfill",
  3933. "portable"
  3934. ],
  3935. "support": {
  3936. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.24.0"
  3937. },
  3938. "funding": [
  3939. {
  3940. "url": "https://symfony.com/sponsor",
  3941. "type": "custom"
  3942. },
  3943. {
  3944. "url": "https://github.com/fabpot",
  3945. "type": "github"
  3946. },
  3947. {
  3948. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3949. "type": "tidelift"
  3950. }
  3951. ],
  3952. "install-path": "../symfony/polyfill-ctype"
  3953. },
  3954. {
  3955. "name": "theseer/tokenizer",
  3956. "version": "1.2.1",
  3957. "version_normalized": "1.2.1.0",
  3958. "source": {
  3959. "type": "git",
  3960. "url": "https://github.com/theseer/tokenizer.git",
  3961. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  3962. },
  3963. "dist": {
  3964. "type": "zip",
  3965. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  3966. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  3967. "shasum": ""
  3968. },
  3969. "require": {
  3970. "ext-dom": "*",
  3971. "ext-tokenizer": "*",
  3972. "ext-xmlwriter": "*",
  3973. "php": "^7.2 || ^8.0"
  3974. },
  3975. "time": "2021-07-28T10:34:58+00:00",
  3976. "type": "library",
  3977. "installation-source": "dist",
  3978. "autoload": {
  3979. "classmap": [
  3980. "src/"
  3981. ]
  3982. },
  3983. "notification-url": "https://packagist.org/downloads/",
  3984. "license": [
  3985. "BSD-3-Clause"
  3986. ],
  3987. "authors": [
  3988. {
  3989. "name": "Arne Blankerts",
  3990. "email": "arne@blankerts.de",
  3991. "role": "Developer"
  3992. }
  3993. ],
  3994. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  3995. "support": {
  3996. "issues": "https://github.com/theseer/tokenizer/issues",
  3997. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  3998. },
  3999. "funding": [
  4000. {
  4001. "url": "https://github.com/theseer",
  4002. "type": "github"
  4003. }
  4004. ],
  4005. "install-path": "../theseer/tokenizer"
  4006. },
  4007. {
  4008. "name": "webmozart/assert",
  4009. "version": "1.10.0",
  4010. "version_normalized": "1.10.0.0",
  4011. "source": {
  4012. "type": "git",
  4013. "url": "https://github.com/webmozarts/assert.git",
  4014. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  4015. },
  4016. "dist": {
  4017. "type": "zip",
  4018. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  4019. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  4020. "shasum": ""
  4021. },
  4022. "require": {
  4023. "php": "^7.2 || ^8.0",
  4024. "symfony/polyfill-ctype": "^1.8"
  4025. },
  4026. "conflict": {
  4027. "phpstan/phpstan": "<0.12.20",
  4028. "vimeo/psalm": "<4.6.1 || 4.6.2"
  4029. },
  4030. "require-dev": {
  4031. "phpunit/phpunit": "^8.5.13"
  4032. },
  4033. "time": "2021-03-09T10:59:23+00:00",
  4034. "type": "library",
  4035. "extra": {
  4036. "branch-alias": {
  4037. "dev-master": "1.10-dev"
  4038. }
  4039. },
  4040. "installation-source": "dist",
  4041. "autoload": {
  4042. "psr-4": {
  4043. "Webmozart\\Assert\\": "src/"
  4044. }
  4045. },
  4046. "notification-url": "https://packagist.org/downloads/",
  4047. "license": [
  4048. "MIT"
  4049. ],
  4050. "authors": [
  4051. {
  4052. "name": "Bernhard Schussek",
  4053. "email": "bschussek@gmail.com"
  4054. }
  4055. ],
  4056. "description": "Assertions to validate method input/output with nice error messages.",
  4057. "keywords": [
  4058. "assert",
  4059. "check",
  4060. "validate"
  4061. ],
  4062. "support": {
  4063. "issues": "https://github.com/webmozarts/assert/issues",
  4064. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  4065. },
  4066. "install-path": "../webmozart/assert"
  4067. }
  4068. ],
  4069. "dev": true,
  4070. "dev-package-names": []
  4071. }