installed.json 149 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179
  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/redis",
  1179. "version": "1.3.10",
  1180. "version_normalized": "1.3.10.0",
  1181. "source": {
  1182. "type": "git",
  1183. "url": "https://github.com/easy-swoole/redis.git",
  1184. "reference": "d970f5672353b6dc203950779d464d6dcfa54de8"
  1185. },
  1186. "dist": {
  1187. "type": "zip",
  1188. "url": "https://api.github.com/repos/easy-swoole/redis/zipball/d970f5672353b6dc203950779d464d6dcfa54de8",
  1189. "reference": "d970f5672353b6dc203950779d464d6dcfa54de8",
  1190. "shasum": "",
  1191. "mirrors": [
  1192. {
  1193. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1194. "preferred": true
  1195. }
  1196. ]
  1197. },
  1198. "require": {
  1199. "easyswoole/spl": "^1.2",
  1200. "ext-swoole": "^4.4.0",
  1201. "php": ">=7.1.0"
  1202. },
  1203. "require-dev": {
  1204. "easyswoole/phpunit": ">=1.0.0",
  1205. "easyswoole/swoole-ide-helper": "^1.2"
  1206. },
  1207. "time": "2021-05-07T02:18:36+00:00",
  1208. "type": "library",
  1209. "installation-source": "dist",
  1210. "autoload": {
  1211. "psr-4": {
  1212. "EasySwoole\\Redis\\": "src/"
  1213. }
  1214. },
  1215. "notification-url": "https://packagist.org/downloads/",
  1216. "license": [
  1217. "Apache-2.0"
  1218. ],
  1219. "authors": [
  1220. {
  1221. "name": "YF",
  1222. "email": "291323003@qq.com"
  1223. }
  1224. ],
  1225. "description": "easyswoole component",
  1226. "homepage": "https://www.easyswoole.com/",
  1227. "keywords": [
  1228. "async",
  1229. "easyswoole",
  1230. "framework",
  1231. "swoole"
  1232. ],
  1233. "support": {
  1234. "issues": "https://github.com/easy-swoole/redis/issues",
  1235. "source": "https://github.com/easy-swoole/redis/tree/1.3.10"
  1236. },
  1237. "install-path": "../easyswoole/redis"
  1238. },
  1239. {
  1240. "name": "easyswoole/session",
  1241. "version": "3.0.1",
  1242. "version_normalized": "3.0.1.0",
  1243. "source": {
  1244. "type": "git",
  1245. "url": "https://github.com/easy-swoole/session.git",
  1246. "reference": "77dfb0021823db4c3fa5c304053026d211e68339"
  1247. },
  1248. "dist": {
  1249. "type": "zip",
  1250. "url": "https://api.github.com/repos/easy-swoole/session/zipball/77dfb0021823db4c3fa5c304053026d211e68339",
  1251. "reference": "77dfb0021823db4c3fa5c304053026d211e68339",
  1252. "shasum": ""
  1253. },
  1254. "require": {
  1255. "easyswoole/component": "^2.1",
  1256. "easyswoole/spl": "^1.3",
  1257. "easyswoole/utility": "^1.1",
  1258. "php": ">=7.1.0"
  1259. },
  1260. "require-dev": {
  1261. "easyswoole/swoole-ide-helper": "^1.2"
  1262. },
  1263. "time": "2021-01-09T03:36:48+00:00",
  1264. "type": "library",
  1265. "installation-source": "dist",
  1266. "autoload": {
  1267. "psr-4": {
  1268. "EasySwoole\\Session\\": "src/",
  1269. "EasySwoole\\Session\\Test\\": "tests/"
  1270. }
  1271. },
  1272. "notification-url": "https://packagist.org/downloads/",
  1273. "license": [
  1274. "Apache-2.0"
  1275. ],
  1276. "authors": [
  1277. {
  1278. "name": "YF",
  1279. "email": "291323003@qq.com"
  1280. }
  1281. ],
  1282. "description": "easyswoole component",
  1283. "homepage": "https://www.easyswoole.com/",
  1284. "keywords": [
  1285. "async",
  1286. "easyswoole",
  1287. "framework",
  1288. "swoole"
  1289. ],
  1290. "support": {
  1291. "issues": "https://github.com/easy-swoole/session/issues",
  1292. "source": "https://github.com/easy-swoole/session/tree/3.0.1"
  1293. },
  1294. "install-path": "../easyswoole/session"
  1295. },
  1296. {
  1297. "name": "easyswoole/socket",
  1298. "version": "1.1.14",
  1299. "version_normalized": "1.1.14.0",
  1300. "source": {
  1301. "type": "git",
  1302. "url": "https://github.com/easy-swoole/socket.git",
  1303. "reference": "e5765ad8b6112d786a6d6c6c8f47a7429effbcea"
  1304. },
  1305. "dist": {
  1306. "type": "zip",
  1307. "url": "https://api.github.com/repos/easy-swoole/socket/zipball/e5765ad8b6112d786a6d6c6c8f47a7429effbcea",
  1308. "reference": "e5765ad8b6112d786a6d6c6c8f47a7429effbcea",
  1309. "shasum": ""
  1310. },
  1311. "require": {
  1312. "easyswoole/spl": "^1.0",
  1313. "php": ">=7.1.0"
  1314. },
  1315. "require-dev": {
  1316. "easyswoole/phpunit": "^1.0",
  1317. "easyswoole/swoole-ide-helper": "^1.0"
  1318. },
  1319. "time": "2021-01-28T08:05:52+00:00",
  1320. "type": "library",
  1321. "installation-source": "dist",
  1322. "autoload": {
  1323. "psr-4": {
  1324. "EasySwoole\\Socket\\": "src/"
  1325. }
  1326. },
  1327. "notification-url": "https://packagist.org/downloads/",
  1328. "license": [
  1329. "Apache-2.0"
  1330. ],
  1331. "authors": [
  1332. {
  1333. "name": "YF",
  1334. "email": "291323003@qq.com"
  1335. }
  1336. ],
  1337. "description": "An efficient swoole framework",
  1338. "homepage": "https://www.easyswoole.com/",
  1339. "keywords": [
  1340. "async",
  1341. "easyswoole",
  1342. "framework",
  1343. "swoole"
  1344. ],
  1345. "support": {
  1346. "issues": "https://github.com/easy-swoole/socket/issues",
  1347. "source": "https://github.com/easy-swoole/socket/tree/1.1.14"
  1348. },
  1349. "install-path": "../easyswoole/socket"
  1350. },
  1351. {
  1352. "name": "easyswoole/spl",
  1353. "version": "1.4.1",
  1354. "version_normalized": "1.4.1.0",
  1355. "source": {
  1356. "type": "git",
  1357. "url": "https://github.com/easy-swoole/spl.git",
  1358. "reference": "3d02bceaf1031a78f959d41dab04e37121f9c58c"
  1359. },
  1360. "dist": {
  1361. "type": "zip",
  1362. "url": "https://api.github.com/repos/easy-swoole/spl/zipball/3d02bceaf1031a78f959d41dab04e37121f9c58c",
  1363. "reference": "3d02bceaf1031a78f959d41dab04e37121f9c58c",
  1364. "shasum": ""
  1365. },
  1366. "require": {
  1367. "ext-json": "*",
  1368. "php": ">=7.1.0"
  1369. },
  1370. "require-dev": {
  1371. "easyswoole/phpunit": "^1.0",
  1372. "easyswoole/swoole-ide-helper": "^1.0"
  1373. },
  1374. "time": "2022-02-02T12:04:48+00:00",
  1375. "type": "library",
  1376. "installation-source": "dist",
  1377. "autoload": {
  1378. "psr-4": {
  1379. "EasySwoole\\Spl\\": "src/",
  1380. "EasySwoole\\Spl\\Test\\": "test/"
  1381. }
  1382. },
  1383. "notification-url": "https://packagist.org/downloads/",
  1384. "license": [
  1385. "Apache-2.0"
  1386. ],
  1387. "authors": [
  1388. {
  1389. "name": "YF",
  1390. "email": "291323003@qq.com"
  1391. }
  1392. ],
  1393. "description": "php stander lib",
  1394. "homepage": "https://www.easyswoole.com/",
  1395. "keywords": [
  1396. "async",
  1397. "easyswoole",
  1398. "framework",
  1399. "swoole"
  1400. ],
  1401. "support": {
  1402. "issues": "https://github.com/easy-swoole/spl/issues",
  1403. "source": "https://github.com/easy-swoole/spl/tree/1.4.1"
  1404. },
  1405. "install-path": "../easyswoole/spl"
  1406. },
  1407. {
  1408. "name": "easyswoole/swoole-ide-helper",
  1409. "version": "1.3.3",
  1410. "version_normalized": "1.3.3.0",
  1411. "source": {
  1412. "type": "git",
  1413. "url": "https://github.com/easy-swoole/ide-helper.git",
  1414. "reference": "d23445978f55de24fec17848321dada1735083cd"
  1415. },
  1416. "dist": {
  1417. "type": "zip",
  1418. "url": "https://api.github.com/repos/easy-swoole/ide-helper/zipball/d23445978f55de24fec17848321dada1735083cd",
  1419. "reference": "d23445978f55de24fec17848321dada1735083cd",
  1420. "shasum": "",
  1421. "mirrors": [
  1422. {
  1423. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1424. "preferred": true
  1425. }
  1426. ]
  1427. },
  1428. "require-dev": {
  1429. "guzzlehttp/guzzle": "~6.5.0",
  1430. "laminas/laminas-code": "~3.4.0",
  1431. "squizlabs/php_codesniffer": "~3.5.0",
  1432. "symfony/filesystem": "~4.0"
  1433. },
  1434. "time": "2021-06-17T12:24:48+00:00",
  1435. "type": "library",
  1436. "installation-source": "dist",
  1437. "notification-url": "https://packagist.org/downloads/",
  1438. "license": [
  1439. "Apache-2.0"
  1440. ],
  1441. "authors": [
  1442. {
  1443. "name": "Team Swoole",
  1444. "email": "team@swoole.com"
  1445. }
  1446. ],
  1447. "description": "IDE help files for Swoole.",
  1448. "support": {
  1449. "source": "https://github.com/easy-swoole/ide-helper/tree/1.3.3"
  1450. },
  1451. "install-path": "../easyswoole/swoole-ide-helper"
  1452. },
  1453. {
  1454. "name": "easyswoole/task",
  1455. "version": "1.1.2",
  1456. "version_normalized": "1.1.2.0",
  1457. "source": {
  1458. "type": "git",
  1459. "url": "https://github.com/easy-swoole/task.git",
  1460. "reference": "e1f7a1d03e22438c9a4bdc6e5fa8f849c346dc07"
  1461. },
  1462. "dist": {
  1463. "type": "zip",
  1464. "url": "https://api.github.com/repos/easy-swoole/task/zipball/e1f7a1d03e22438c9a4bdc6e5fa8f849c346dc07",
  1465. "reference": "e1f7a1d03e22438c9a4bdc6e5fa8f849c346dc07",
  1466. "shasum": ""
  1467. },
  1468. "require": {
  1469. "easyswoole/component": "^2.0",
  1470. "easyswoole/spl": "^1.2",
  1471. "ext-swoole": ">=4.4.5",
  1472. "opis/closure": "^3.5"
  1473. },
  1474. "require-dev": {
  1475. "easyswoole/swoole-ide-helper": "^1.0"
  1476. },
  1477. "time": "2020-12-01T13:43:22+00:00",
  1478. "type": "library",
  1479. "installation-source": "dist",
  1480. "autoload": {
  1481. "psr-4": {
  1482. "EasySwoole\\Task\\": "src/"
  1483. }
  1484. },
  1485. "notification-url": "https://packagist.org/downloads/",
  1486. "license": [
  1487. "Apache-2.0"
  1488. ],
  1489. "description": "A simple Queue implementation integrated into easySwoole",
  1490. "keywords": [
  1491. "easyswoole"
  1492. ],
  1493. "support": {
  1494. "issues": "https://github.com/easy-swoole/task/issues",
  1495. "source": "https://github.com/easy-swoole/task/tree/1.1.2"
  1496. },
  1497. "install-path": "../easyswoole/task"
  1498. },
  1499. {
  1500. "name": "easyswoole/trigger",
  1501. "version": "1.0.0",
  1502. "version_normalized": "1.0.0.0",
  1503. "source": {
  1504. "type": "git",
  1505. "url": "https://github.com/easy-swoole/trigger.git",
  1506. "reference": "f449f974d6645342134f455ce4a6885c8ad3a92e"
  1507. },
  1508. "dist": {
  1509. "type": "zip",
  1510. "url": "https://api.github.com/repos/easy-swoole/trigger/zipball/f449f974d6645342134f455ce4a6885c8ad3a92e",
  1511. "reference": "f449f974d6645342134f455ce4a6885c8ad3a92e",
  1512. "shasum": ""
  1513. },
  1514. "require": {
  1515. "easyswoole/log": "^1.0"
  1516. },
  1517. "time": "2019-05-29T15:33:12+00:00",
  1518. "type": "library",
  1519. "installation-source": "dist",
  1520. "autoload": {
  1521. "psr-4": {
  1522. "EasySwoole\\Trigger\\": "src/"
  1523. }
  1524. },
  1525. "notification-url": "https://packagist.org/downloads/",
  1526. "license": [
  1527. "Apache-2.0"
  1528. ],
  1529. "authors": [
  1530. {
  1531. "name": "YF",
  1532. "email": "291323003@qq.com"
  1533. }
  1534. ],
  1535. "description": "An efficient swoole framework",
  1536. "homepage": "https://www.easyswoole.com/",
  1537. "keywords": [
  1538. "async",
  1539. "easyswoole",
  1540. "framework",
  1541. "swoole"
  1542. ],
  1543. "support": {
  1544. "issues": "https://github.com/easy-swoole/trigger/issues",
  1545. "source": "https://github.com/easy-swoole/trigger/tree/master"
  1546. },
  1547. "install-path": "../easyswoole/trigger"
  1548. },
  1549. {
  1550. "name": "easyswoole/utility",
  1551. "version": "1.3.2",
  1552. "version_normalized": "1.3.2.0",
  1553. "source": {
  1554. "type": "git",
  1555. "url": "https://github.com/easy-swoole/utility.git",
  1556. "reference": "fd019b7fc8648314f98cd17020700245aaf88ce3"
  1557. },
  1558. "dist": {
  1559. "type": "zip",
  1560. "url": "https://api.github.com/repos/easy-swoole/utility/zipball/fd019b7fc8648314f98cd17020700245aaf88ce3",
  1561. "reference": "fd019b7fc8648314f98cd17020700245aaf88ce3",
  1562. "shasum": ""
  1563. },
  1564. "require": {
  1565. "ext-bcmath": "*",
  1566. "ext-json": "*",
  1567. "ext-openssl": "*",
  1568. "php": ">=7.1.0"
  1569. },
  1570. "require-dev": {
  1571. "easyswoole/phpunit": "^1.0",
  1572. "easyswoole/swoole-ide-helper": "^1.3"
  1573. },
  1574. "time": "2022-01-27T03:58:24+00:00",
  1575. "type": "library",
  1576. "installation-source": "dist",
  1577. "autoload": {
  1578. "psr-4": {
  1579. "EasySwoole\\Utility\\": "src/"
  1580. }
  1581. },
  1582. "notification-url": "https://packagist.org/downloads/",
  1583. "license": [
  1584. "Apache-2.0"
  1585. ],
  1586. "authors": [
  1587. {
  1588. "name": "evalor",
  1589. "email": "mipone@foxmail.com"
  1590. }
  1591. ],
  1592. "description": "easyswoole extension tool library",
  1593. "support": {
  1594. "issues": "https://github.com/easy-swoole/utility/issues",
  1595. "source": "https://github.com/easy-swoole/utility/tree/1.3.2"
  1596. },
  1597. "install-path": "../easyswoole/utility"
  1598. },
  1599. {
  1600. "name": "easyswoole/validate",
  1601. "version": "2.1.3",
  1602. "version_normalized": "2.1.3.0",
  1603. "source": {
  1604. "type": "git",
  1605. "url": "https://github.com/easy-swoole/validate.git",
  1606. "reference": "65a7ebc015be11394388cd16073cfc8d2dc41fa4"
  1607. },
  1608. "dist": {
  1609. "type": "zip",
  1610. "url": "https://api.github.com/repos/easy-swoole/validate/zipball/65a7ebc015be11394388cd16073cfc8d2dc41fa4",
  1611. "reference": "65a7ebc015be11394388cd16073cfc8d2dc41fa4",
  1612. "shasum": ""
  1613. },
  1614. "require": {
  1615. "easyswoole/spl": "^1.0",
  1616. "ext-json": "*",
  1617. "ext-mbstring": "*",
  1618. "php": ">=7.1.0",
  1619. "psr/http-message": "^1.0"
  1620. },
  1621. "require-dev": {
  1622. "easyswoole/phpunit": "^1.0"
  1623. },
  1624. "time": "2021-12-01T01:52:52+00:00",
  1625. "type": "library",
  1626. "installation-source": "dist",
  1627. "autoload": {
  1628. "psr-4": {
  1629. "EasySwoole\\Validate\\": "src/"
  1630. }
  1631. },
  1632. "notification-url": "https://packagist.org/downloads/",
  1633. "license": [
  1634. "Apache-2.0"
  1635. ],
  1636. "authors": [
  1637. {
  1638. "name": "YF",
  1639. "email": "291323003@qq.com"
  1640. }
  1641. ],
  1642. "description": "An efficient swoole framework",
  1643. "homepage": "https://www.easyswoole.com/",
  1644. "keywords": [
  1645. "async",
  1646. "easyswoole",
  1647. "framework",
  1648. "swoole"
  1649. ],
  1650. "support": {
  1651. "issues": "https://github.com/easy-swoole/validate/issues",
  1652. "source": "https://github.com/easy-swoole/validate/tree/2.1.3"
  1653. },
  1654. "install-path": "../easyswoole/validate"
  1655. },
  1656. {
  1657. "name": "flc/alidayu",
  1658. "version": "v2.0.7",
  1659. "version_normalized": "2.0.7.0",
  1660. "source": {
  1661. "type": "git",
  1662. "url": "https://github.com/flc1125/alidayu.git",
  1663. "reference": "8132041a56c6d2d9044bc70c828cec5426954204"
  1664. },
  1665. "dist": {
  1666. "type": "zip",
  1667. "url": "https://api.github.com/repos/flc1125/alidayu/zipball/8132041a56c6d2d9044bc70c828cec5426954204",
  1668. "reference": "8132041a56c6d2d9044bc70c828cec5426954204",
  1669. "shasum": ""
  1670. },
  1671. "require": {
  1672. "php": ">=5.4.0"
  1673. },
  1674. "time": "2019-04-05T16:42:01+00:00",
  1675. "type": "library",
  1676. "installation-source": "dist",
  1677. "autoload": {
  1678. "psr-4": {
  1679. "Flc\\Alidayu\\": "src/Alidayu/"
  1680. }
  1681. },
  1682. "notification-url": "https://packagist.org/downloads/",
  1683. "license": [
  1684. "MIT"
  1685. ],
  1686. "description": "阿里大于(鱼)API-SDK;适用任何PHP项目,包括Laravel、Yii、Thinkphp等...",
  1687. "keywords": [
  1688. "alidayu",
  1689. "flc"
  1690. ],
  1691. "support": {
  1692. "issues": "https://github.com/flc1125/alidayu/issues",
  1693. "source": "https://github.com/flc1125/alidayu/tree/master"
  1694. },
  1695. "install-path": "../flc/alidayu"
  1696. },
  1697. {
  1698. "name": "mrgoon/aliyun-sms",
  1699. "version": "2.0.2",
  1700. "version_normalized": "2.0.2.0",
  1701. "source": {
  1702. "type": "git",
  1703. "url": "https://github.com/MissMyCat/aliyun-sms.git",
  1704. "reference": "521a4f95e556e8833be31bf3aa2a3d18c9b1abbe"
  1705. },
  1706. "dist": {
  1707. "type": "zip",
  1708. "url": "https://api.github.com/repos/MissMyCat/aliyun-sms/zipball/521a4f95e556e8833be31bf3aa2a3d18c9b1abbe",
  1709. "reference": "521a4f95e556e8833be31bf3aa2a3d18c9b1abbe",
  1710. "shasum": ""
  1711. },
  1712. "require": {
  1713. "mrgoon/aliyun-sms-sdk": "1.1.*",
  1714. "php": ">5.3"
  1715. },
  1716. "time": "2017-10-19T08:16:16+00:00",
  1717. "type": "library",
  1718. "installation-source": "dist",
  1719. "autoload": {
  1720. "psr-4": {
  1721. "Mrgoon\\AliSms\\": "src/"
  1722. }
  1723. },
  1724. "notification-url": "https://packagist.org/downloads/",
  1725. "license": [
  1726. "MIT"
  1727. ],
  1728. "authors": [
  1729. {
  1730. "name": "mrgoon",
  1731. "email": "mrgoon@foxmail.com"
  1732. }
  1733. ],
  1734. "description": "阿里云短信服务php调用代码",
  1735. "keywords": [
  1736. "Aliyun-Sms",
  1737. "aliyun",
  1738. "sdk"
  1739. ],
  1740. "support": {
  1741. "issues": "https://github.com/MissMyCat/aliyun-sms/issues",
  1742. "source": "https://github.com/MissMyCat/aliyun-sms/tree/v2.0.2"
  1743. },
  1744. "install-path": "../mrgoon/aliyun-sms"
  1745. },
  1746. {
  1747. "name": "mrgoon/aliyun-sms-sdk",
  1748. "version": "v1.1.2",
  1749. "version_normalized": "1.1.2.0",
  1750. "source": {
  1751. "type": "git",
  1752. "url": "https://github.com/MissMyCat/aliyun-sms-sdk.git",
  1753. "reference": "4f7da60f8d4351d05640d89a5a4f431ece04156c"
  1754. },
  1755. "dist": {
  1756. "type": "zip",
  1757. "url": "https://api.github.com/repos/MissMyCat/aliyun-sms-sdk/zipball/4f7da60f8d4351d05640d89a5a4f431ece04156c",
  1758. "reference": "4f7da60f8d4351d05640d89a5a4f431ece04156c",
  1759. "shasum": ""
  1760. },
  1761. "require": {
  1762. "php": ">5.3"
  1763. },
  1764. "time": "2017-10-19T03:49:51+00:00",
  1765. "type": "library",
  1766. "installation-source": "dist",
  1767. "autoload": {
  1768. "psr-4": {
  1769. "Mrgoon\\AliyunSmsSdk\\": "aliyun-php-sdk-core/",
  1770. "Mrgoon\\Dysmsapi\\Request\\V20170525\\": "Dysmsapi/Request/V20170525"
  1771. }
  1772. },
  1773. "notification-url": "https://packagist.org/downloads/",
  1774. "license": [
  1775. "MIT"
  1776. ],
  1777. "authors": [
  1778. {
  1779. "name": "mrgoon",
  1780. "email": "mrgoon@foxmail.com"
  1781. }
  1782. ],
  1783. "description": "阿里云短信服务核心代码",
  1784. "keywords": [
  1785. "Aliyun-Sms",
  1786. "aliyun",
  1787. "sdk"
  1788. ],
  1789. "support": {
  1790. "issues": "https://github.com/MissMyCat/aliyun-sms-sdk/issues",
  1791. "source": "https://github.com/MissMyCat/aliyun-sms-sdk/tree/v1.1.2"
  1792. },
  1793. "install-path": "../mrgoon/aliyun-sms-sdk"
  1794. },
  1795. {
  1796. "name": "myclabs/deep-copy",
  1797. "version": "1.10.2",
  1798. "version_normalized": "1.10.2.0",
  1799. "source": {
  1800. "type": "git",
  1801. "url": "https://github.com/myclabs/DeepCopy.git",
  1802. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  1803. },
  1804. "dist": {
  1805. "type": "zip",
  1806. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  1807. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  1808. "shasum": ""
  1809. },
  1810. "require": {
  1811. "php": "^7.1 || ^8.0"
  1812. },
  1813. "require-dev": {
  1814. "doctrine/collections": "^1.0",
  1815. "doctrine/common": "^2.6",
  1816. "phpunit/phpunit": "^7.1"
  1817. },
  1818. "time": "2020-11-13T09:40:50+00:00",
  1819. "type": "library",
  1820. "installation-source": "dist",
  1821. "autoload": {
  1822. "files": [
  1823. "src/DeepCopy/deep_copy.php"
  1824. ],
  1825. "psr-4": {
  1826. "DeepCopy\\": "src/DeepCopy/"
  1827. }
  1828. },
  1829. "notification-url": "https://packagist.org/downloads/",
  1830. "license": [
  1831. "MIT"
  1832. ],
  1833. "description": "Create deep copies (clones) of your objects",
  1834. "keywords": [
  1835. "clone",
  1836. "copy",
  1837. "duplicate",
  1838. "object",
  1839. "object graph"
  1840. ],
  1841. "support": {
  1842. "issues": "https://github.com/myclabs/DeepCopy/issues",
  1843. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  1844. },
  1845. "funding": [
  1846. {
  1847. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  1848. "type": "tidelift"
  1849. }
  1850. ],
  1851. "install-path": "../myclabs/deep-copy"
  1852. },
  1853. {
  1854. "name": "nikic/fast-route",
  1855. "version": "v1.3.0",
  1856. "version_normalized": "1.3.0.0",
  1857. "source": {
  1858. "type": "git",
  1859. "url": "https://github.com/nikic/FastRoute.git",
  1860. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  1861. },
  1862. "dist": {
  1863. "type": "zip",
  1864. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  1865. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  1866. "shasum": ""
  1867. },
  1868. "require": {
  1869. "php": ">=5.4.0"
  1870. },
  1871. "require-dev": {
  1872. "phpunit/phpunit": "^4.8.35|~5.7"
  1873. },
  1874. "time": "2018-02-13T20:26:39+00:00",
  1875. "type": "library",
  1876. "installation-source": "dist",
  1877. "autoload": {
  1878. "files": [
  1879. "src/functions.php"
  1880. ],
  1881. "psr-4": {
  1882. "FastRoute\\": "src/"
  1883. }
  1884. },
  1885. "notification-url": "https://packagist.org/downloads/",
  1886. "license": [
  1887. "BSD-3-Clause"
  1888. ],
  1889. "authors": [
  1890. {
  1891. "name": "Nikita Popov",
  1892. "email": "nikic@php.net"
  1893. }
  1894. ],
  1895. "description": "Fast request router for PHP",
  1896. "keywords": [
  1897. "router",
  1898. "routing"
  1899. ],
  1900. "support": {
  1901. "issues": "https://github.com/nikic/FastRoute/issues",
  1902. "source": "https://github.com/nikic/FastRoute/tree/master"
  1903. },
  1904. "install-path": "../nikic/fast-route"
  1905. },
  1906. {
  1907. "name": "nikic/php-parser",
  1908. "version": "v4.13.2",
  1909. "version_normalized": "4.13.2.0",
  1910. "source": {
  1911. "type": "git",
  1912. "url": "https://github.com/nikic/PHP-Parser.git",
  1913. "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
  1914. },
  1915. "dist": {
  1916. "type": "zip",
  1917. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
  1918. "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
  1919. "shasum": ""
  1920. },
  1921. "require": {
  1922. "ext-tokenizer": "*",
  1923. "php": ">=7.0"
  1924. },
  1925. "require-dev": {
  1926. "ircmaxell/php-yacc": "^0.0.7",
  1927. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  1928. },
  1929. "time": "2021-11-30T19:35:32+00:00",
  1930. "bin": [
  1931. "bin/php-parse"
  1932. ],
  1933. "type": "library",
  1934. "extra": {
  1935. "branch-alias": {
  1936. "dev-master": "4.9-dev"
  1937. }
  1938. },
  1939. "installation-source": "dist",
  1940. "autoload": {
  1941. "psr-4": {
  1942. "PhpParser\\": "lib/PhpParser"
  1943. }
  1944. },
  1945. "notification-url": "https://packagist.org/downloads/",
  1946. "license": [
  1947. "BSD-3-Clause"
  1948. ],
  1949. "authors": [
  1950. {
  1951. "name": "Nikita Popov"
  1952. }
  1953. ],
  1954. "description": "A PHP parser written in PHP",
  1955. "keywords": [
  1956. "parser",
  1957. "php"
  1958. ],
  1959. "support": {
  1960. "issues": "https://github.com/nikic/PHP-Parser/issues",
  1961. "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
  1962. },
  1963. "install-path": "../nikic/php-parser"
  1964. },
  1965. {
  1966. "name": "opis/closure",
  1967. "version": "3.6.3",
  1968. "version_normalized": "3.6.3.0",
  1969. "source": {
  1970. "type": "git",
  1971. "url": "https://github.com/opis/closure.git",
  1972. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  1973. },
  1974. "dist": {
  1975. "type": "zip",
  1976. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  1977. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  1978. "shasum": ""
  1979. },
  1980. "require": {
  1981. "php": "^5.4 || ^7.0 || ^8.0"
  1982. },
  1983. "require-dev": {
  1984. "jeremeamia/superclosure": "^2.0",
  1985. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  1986. },
  1987. "time": "2022-01-27T09:35:39+00:00",
  1988. "type": "library",
  1989. "extra": {
  1990. "branch-alias": {
  1991. "dev-master": "3.6.x-dev"
  1992. }
  1993. },
  1994. "installation-source": "dist",
  1995. "autoload": {
  1996. "psr-4": {
  1997. "Opis\\Closure\\": "src/"
  1998. },
  1999. "files": [
  2000. "functions.php"
  2001. ]
  2002. },
  2003. "notification-url": "https://packagist.org/downloads/",
  2004. "license": [
  2005. "MIT"
  2006. ],
  2007. "authors": [
  2008. {
  2009. "name": "Marius Sarca",
  2010. "email": "marius.sarca@gmail.com"
  2011. },
  2012. {
  2013. "name": "Sorin Sarca",
  2014. "email": "sarca_sorin@hotmail.com"
  2015. }
  2016. ],
  2017. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2018. "homepage": "https://opis.io/closure",
  2019. "keywords": [
  2020. "anonymous functions",
  2021. "closure",
  2022. "function",
  2023. "serializable",
  2024. "serialization",
  2025. "serialize"
  2026. ],
  2027. "support": {
  2028. "issues": "https://github.com/opis/closure/issues",
  2029. "source": "https://github.com/opis/closure/tree/3.6.3"
  2030. },
  2031. "install-path": "../opis/closure"
  2032. },
  2033. {
  2034. "name": "phar-io/manifest",
  2035. "version": "2.0.3",
  2036. "version_normalized": "2.0.3.0",
  2037. "source": {
  2038. "type": "git",
  2039. "url": "https://github.com/phar-io/manifest.git",
  2040. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  2041. },
  2042. "dist": {
  2043. "type": "zip",
  2044. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  2045. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  2046. "shasum": ""
  2047. },
  2048. "require": {
  2049. "ext-dom": "*",
  2050. "ext-phar": "*",
  2051. "ext-xmlwriter": "*",
  2052. "phar-io/version": "^3.0.1",
  2053. "php": "^7.2 || ^8.0"
  2054. },
  2055. "time": "2021-07-20T11:28:43+00:00",
  2056. "type": "library",
  2057. "extra": {
  2058. "branch-alias": {
  2059. "dev-master": "2.0.x-dev"
  2060. }
  2061. },
  2062. "installation-source": "dist",
  2063. "autoload": {
  2064. "classmap": [
  2065. "src/"
  2066. ]
  2067. },
  2068. "notification-url": "https://packagist.org/downloads/",
  2069. "license": [
  2070. "BSD-3-Clause"
  2071. ],
  2072. "authors": [
  2073. {
  2074. "name": "Arne Blankerts",
  2075. "email": "arne@blankerts.de",
  2076. "role": "Developer"
  2077. },
  2078. {
  2079. "name": "Sebastian Heuer",
  2080. "email": "sebastian@phpeople.de",
  2081. "role": "Developer"
  2082. },
  2083. {
  2084. "name": "Sebastian Bergmann",
  2085. "email": "sebastian@phpunit.de",
  2086. "role": "Developer"
  2087. }
  2088. ],
  2089. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  2090. "support": {
  2091. "issues": "https://github.com/phar-io/manifest/issues",
  2092. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  2093. },
  2094. "install-path": "../phar-io/manifest"
  2095. },
  2096. {
  2097. "name": "phar-io/version",
  2098. "version": "3.1.1",
  2099. "version_normalized": "3.1.1.0",
  2100. "source": {
  2101. "type": "git",
  2102. "url": "https://github.com/phar-io/version.git",
  2103. "reference": "15a90844ad40f127afd244c0cad228de2a80052a"
  2104. },
  2105. "dist": {
  2106. "type": "zip",
  2107. "url": "https://api.github.com/repos/phar-io/version/zipball/15a90844ad40f127afd244c0cad228de2a80052a",
  2108. "reference": "15a90844ad40f127afd244c0cad228de2a80052a",
  2109. "shasum": ""
  2110. },
  2111. "require": {
  2112. "php": "^7.2 || ^8.0"
  2113. },
  2114. "time": "2022-02-07T21:56:48+00:00",
  2115. "type": "library",
  2116. "installation-source": "dist",
  2117. "autoload": {
  2118. "classmap": [
  2119. "src/"
  2120. ]
  2121. },
  2122. "notification-url": "https://packagist.org/downloads/",
  2123. "license": [
  2124. "BSD-3-Clause"
  2125. ],
  2126. "authors": [
  2127. {
  2128. "name": "Arne Blankerts",
  2129. "email": "arne@blankerts.de",
  2130. "role": "Developer"
  2131. },
  2132. {
  2133. "name": "Sebastian Heuer",
  2134. "email": "sebastian@phpeople.de",
  2135. "role": "Developer"
  2136. },
  2137. {
  2138. "name": "Sebastian Bergmann",
  2139. "email": "sebastian@phpunit.de",
  2140. "role": "Developer"
  2141. }
  2142. ],
  2143. "description": "Library for handling version information and constraints",
  2144. "support": {
  2145. "issues": "https://github.com/phar-io/version/issues",
  2146. "source": "https://github.com/phar-io/version/tree/3.1.1"
  2147. },
  2148. "install-path": "../phar-io/version"
  2149. },
  2150. {
  2151. "name": "phpdocumentor/reflection-common",
  2152. "version": "2.2.0",
  2153. "version_normalized": "2.2.0.0",
  2154. "source": {
  2155. "type": "git",
  2156. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  2157. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  2158. },
  2159. "dist": {
  2160. "type": "zip",
  2161. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2162. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  2163. "shasum": ""
  2164. },
  2165. "require": {
  2166. "php": "^7.2 || ^8.0"
  2167. },
  2168. "time": "2020-06-27T09:03:43+00:00",
  2169. "type": "library",
  2170. "extra": {
  2171. "branch-alias": {
  2172. "dev-2.x": "2.x-dev"
  2173. }
  2174. },
  2175. "installation-source": "dist",
  2176. "autoload": {
  2177. "psr-4": {
  2178. "phpDocumentor\\Reflection\\": "src/"
  2179. }
  2180. },
  2181. "notification-url": "https://packagist.org/downloads/",
  2182. "license": [
  2183. "MIT"
  2184. ],
  2185. "authors": [
  2186. {
  2187. "name": "Jaap van Otterdijk",
  2188. "email": "opensource@ijaap.nl"
  2189. }
  2190. ],
  2191. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  2192. "homepage": "http://www.phpdoc.org",
  2193. "keywords": [
  2194. "FQSEN",
  2195. "phpDocumentor",
  2196. "phpdoc",
  2197. "reflection",
  2198. "static analysis"
  2199. ],
  2200. "support": {
  2201. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  2202. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  2203. },
  2204. "install-path": "../phpdocumentor/reflection-common"
  2205. },
  2206. {
  2207. "name": "phpdocumentor/reflection-docblock",
  2208. "version": "5.3.0",
  2209. "version_normalized": "5.3.0.0",
  2210. "source": {
  2211. "type": "git",
  2212. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  2213. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  2214. },
  2215. "dist": {
  2216. "type": "zip",
  2217. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  2218. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  2219. "shasum": ""
  2220. },
  2221. "require": {
  2222. "ext-filter": "*",
  2223. "php": "^7.2 || ^8.0",
  2224. "phpdocumentor/reflection-common": "^2.2",
  2225. "phpdocumentor/type-resolver": "^1.3",
  2226. "webmozart/assert": "^1.9.1"
  2227. },
  2228. "require-dev": {
  2229. "mockery/mockery": "~1.3.2",
  2230. "psalm/phar": "^4.8"
  2231. },
  2232. "time": "2021-10-19T17:43:47+00:00",
  2233. "type": "library",
  2234. "extra": {
  2235. "branch-alias": {
  2236. "dev-master": "5.x-dev"
  2237. }
  2238. },
  2239. "installation-source": "dist",
  2240. "autoload": {
  2241. "psr-4": {
  2242. "phpDocumentor\\Reflection\\": "src"
  2243. }
  2244. },
  2245. "notification-url": "https://packagist.org/downloads/",
  2246. "license": [
  2247. "MIT"
  2248. ],
  2249. "authors": [
  2250. {
  2251. "name": "Mike van Riel",
  2252. "email": "me@mikevanriel.com"
  2253. },
  2254. {
  2255. "name": "Jaap van Otterdijk",
  2256. "email": "account@ijaap.nl"
  2257. }
  2258. ],
  2259. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  2260. "support": {
  2261. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  2262. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  2263. },
  2264. "install-path": "../phpdocumentor/reflection-docblock"
  2265. },
  2266. {
  2267. "name": "phpdocumentor/type-resolver",
  2268. "version": "1.6.0",
  2269. "version_normalized": "1.6.0.0",
  2270. "source": {
  2271. "type": "git",
  2272. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  2273. "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706"
  2274. },
  2275. "dist": {
  2276. "type": "zip",
  2277. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/93ebd0014cab80c4ea9f5e297ea48672f1b87706",
  2278. "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706",
  2279. "shasum": ""
  2280. },
  2281. "require": {
  2282. "php": "^7.2 || ^8.0",
  2283. "phpdocumentor/reflection-common": "^2.0"
  2284. },
  2285. "require-dev": {
  2286. "ext-tokenizer": "*",
  2287. "psalm/phar": "^4.8"
  2288. },
  2289. "time": "2022-01-04T19:58:01+00:00",
  2290. "type": "library",
  2291. "extra": {
  2292. "branch-alias": {
  2293. "dev-1.x": "1.x-dev"
  2294. }
  2295. },
  2296. "installation-source": "dist",
  2297. "autoload": {
  2298. "psr-4": {
  2299. "phpDocumentor\\Reflection\\": "src"
  2300. }
  2301. },
  2302. "notification-url": "https://packagist.org/downloads/",
  2303. "license": [
  2304. "MIT"
  2305. ],
  2306. "authors": [
  2307. {
  2308. "name": "Mike van Riel",
  2309. "email": "me@mikevanriel.com"
  2310. }
  2311. ],
  2312. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  2313. "support": {
  2314. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  2315. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.0"
  2316. },
  2317. "install-path": "../phpdocumentor/type-resolver"
  2318. },
  2319. {
  2320. "name": "phpmailer/phpmailer",
  2321. "version": "v6.6.0",
  2322. "version_normalized": "6.6.0.0",
  2323. "source": {
  2324. "type": "git",
  2325. "url": "https://github.com/PHPMailer/PHPMailer.git",
  2326. "reference": "e43bac82edc26ca04b36143a48bde1c051cfd5b1"
  2327. },
  2328. "dist": {
  2329. "type": "zip",
  2330. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e43bac82edc26ca04b36143a48bde1c051cfd5b1",
  2331. "reference": "e43bac82edc26ca04b36143a48bde1c051cfd5b1",
  2332. "shasum": ""
  2333. },
  2334. "require": {
  2335. "ext-ctype": "*",
  2336. "ext-filter": "*",
  2337. "ext-hash": "*",
  2338. "php": ">=5.5.0"
  2339. },
  2340. "require-dev": {
  2341. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2342. "doctrine/annotations": "^1.2",
  2343. "php-parallel-lint/php-console-highlighter": "^0.5.0",
  2344. "php-parallel-lint/php-parallel-lint": "^1.3.1",
  2345. "phpcompatibility/php-compatibility": "^9.3.5",
  2346. "roave/security-advisories": "dev-latest",
  2347. "squizlabs/php_codesniffer": "^3.6.2",
  2348. "yoast/phpunit-polyfills": "^1.0.0"
  2349. },
  2350. "suggest": {
  2351. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  2352. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  2353. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  2354. "psr/log": "For optional PSR-3 debug logging",
  2355. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  2356. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  2357. },
  2358. "time": "2022-02-28T15:31:21+00:00",
  2359. "type": "library",
  2360. "installation-source": "dist",
  2361. "autoload": {
  2362. "psr-4": {
  2363. "PHPMailer\\PHPMailer\\": "src/"
  2364. }
  2365. },
  2366. "notification-url": "https://packagist.org/downloads/",
  2367. "license": [
  2368. "LGPL-2.1-only"
  2369. ],
  2370. "authors": [
  2371. {
  2372. "name": "Marcus Bointon",
  2373. "email": "phpmailer@synchromedia.co.uk"
  2374. },
  2375. {
  2376. "name": "Jim Jagielski",
  2377. "email": "jimjag@gmail.com"
  2378. },
  2379. {
  2380. "name": "Andy Prevost",
  2381. "email": "codeworxtech@users.sourceforge.net"
  2382. },
  2383. {
  2384. "name": "Brent R. Matzelle"
  2385. }
  2386. ],
  2387. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  2388. "support": {
  2389. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  2390. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.6.0"
  2391. },
  2392. "funding": [
  2393. {
  2394. "url": "https://github.com/Synchro",
  2395. "type": "github"
  2396. }
  2397. ],
  2398. "install-path": "../phpmailer/phpmailer"
  2399. },
  2400. {
  2401. "name": "phpspec/prophecy",
  2402. "version": "v1.15.0",
  2403. "version_normalized": "1.15.0.0",
  2404. "source": {
  2405. "type": "git",
  2406. "url": "https://github.com/phpspec/prophecy.git",
  2407. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  2408. },
  2409. "dist": {
  2410. "type": "zip",
  2411. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  2412. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  2413. "shasum": ""
  2414. },
  2415. "require": {
  2416. "doctrine/instantiator": "^1.2",
  2417. "php": "^7.2 || ~8.0, <8.2",
  2418. "phpdocumentor/reflection-docblock": "^5.2",
  2419. "sebastian/comparator": "^3.0 || ^4.0",
  2420. "sebastian/recursion-context": "^3.0 || ^4.0"
  2421. },
  2422. "require-dev": {
  2423. "phpspec/phpspec": "^6.0 || ^7.0",
  2424. "phpunit/phpunit": "^8.0 || ^9.0"
  2425. },
  2426. "time": "2021-12-08T12:19:24+00:00",
  2427. "type": "library",
  2428. "extra": {
  2429. "branch-alias": {
  2430. "dev-master": "1.x-dev"
  2431. }
  2432. },
  2433. "installation-source": "dist",
  2434. "autoload": {
  2435. "psr-4": {
  2436. "Prophecy\\": "src/Prophecy"
  2437. }
  2438. },
  2439. "notification-url": "https://packagist.org/downloads/",
  2440. "license": [
  2441. "MIT"
  2442. ],
  2443. "authors": [
  2444. {
  2445. "name": "Konstantin Kudryashov",
  2446. "email": "ever.zet@gmail.com",
  2447. "homepage": "http://everzet.com"
  2448. },
  2449. {
  2450. "name": "Marcello Duarte",
  2451. "email": "marcello.duarte@gmail.com"
  2452. }
  2453. ],
  2454. "description": "Highly opinionated mocking framework for PHP 5.3+",
  2455. "homepage": "https://github.com/phpspec/prophecy",
  2456. "keywords": [
  2457. "Double",
  2458. "Dummy",
  2459. "fake",
  2460. "mock",
  2461. "spy",
  2462. "stub"
  2463. ],
  2464. "support": {
  2465. "issues": "https://github.com/phpspec/prophecy/issues",
  2466. "source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
  2467. },
  2468. "install-path": "../phpspec/prophecy"
  2469. },
  2470. {
  2471. "name": "phpunit/php-code-coverage",
  2472. "version": "9.2.10",
  2473. "version_normalized": "9.2.10.0",
  2474. "source": {
  2475. "type": "git",
  2476. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  2477. "reference": "d5850aaf931743067f4bfc1ae4cbd06468400687"
  2478. },
  2479. "dist": {
  2480. "type": "zip",
  2481. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/d5850aaf931743067f4bfc1ae4cbd06468400687",
  2482. "reference": "d5850aaf931743067f4bfc1ae4cbd06468400687",
  2483. "shasum": ""
  2484. },
  2485. "require": {
  2486. "ext-dom": "*",
  2487. "ext-libxml": "*",
  2488. "ext-xmlwriter": "*",
  2489. "nikic/php-parser": "^4.13.0",
  2490. "php": ">=7.3",
  2491. "phpunit/php-file-iterator": "^3.0.3",
  2492. "phpunit/php-text-template": "^2.0.2",
  2493. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  2494. "sebastian/complexity": "^2.0",
  2495. "sebastian/environment": "^5.1.2",
  2496. "sebastian/lines-of-code": "^1.0.3",
  2497. "sebastian/version": "^3.0.1",
  2498. "theseer/tokenizer": "^1.2.0"
  2499. },
  2500. "require-dev": {
  2501. "phpunit/phpunit": "^9.3"
  2502. },
  2503. "suggest": {
  2504. "ext-pcov": "*",
  2505. "ext-xdebug": "*"
  2506. },
  2507. "time": "2021-12-05T09:12:13+00:00",
  2508. "type": "library",
  2509. "extra": {
  2510. "branch-alias": {
  2511. "dev-master": "9.2-dev"
  2512. }
  2513. },
  2514. "installation-source": "dist",
  2515. "autoload": {
  2516. "classmap": [
  2517. "src/"
  2518. ]
  2519. },
  2520. "notification-url": "https://packagist.org/downloads/",
  2521. "license": [
  2522. "BSD-3-Clause"
  2523. ],
  2524. "authors": [
  2525. {
  2526. "name": "Sebastian Bergmann",
  2527. "email": "sebastian@phpunit.de",
  2528. "role": "lead"
  2529. }
  2530. ],
  2531. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  2532. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  2533. "keywords": [
  2534. "coverage",
  2535. "testing",
  2536. "xunit"
  2537. ],
  2538. "support": {
  2539. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  2540. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.10"
  2541. },
  2542. "funding": [
  2543. {
  2544. "url": "https://github.com/sebastianbergmann",
  2545. "type": "github"
  2546. }
  2547. ],
  2548. "install-path": "../phpunit/php-code-coverage"
  2549. },
  2550. {
  2551. "name": "phpunit/php-file-iterator",
  2552. "version": "3.0.6",
  2553. "version_normalized": "3.0.6.0",
  2554. "source": {
  2555. "type": "git",
  2556. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  2557. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  2558. },
  2559. "dist": {
  2560. "type": "zip",
  2561. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  2562. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  2563. "shasum": ""
  2564. },
  2565. "require": {
  2566. "php": ">=7.3"
  2567. },
  2568. "require-dev": {
  2569. "phpunit/phpunit": "^9.3"
  2570. },
  2571. "time": "2021-12-02T12:48:52+00:00",
  2572. "type": "library",
  2573. "extra": {
  2574. "branch-alias": {
  2575. "dev-master": "3.0-dev"
  2576. }
  2577. },
  2578. "installation-source": "dist",
  2579. "autoload": {
  2580. "classmap": [
  2581. "src/"
  2582. ]
  2583. },
  2584. "notification-url": "https://packagist.org/downloads/",
  2585. "license": [
  2586. "BSD-3-Clause"
  2587. ],
  2588. "authors": [
  2589. {
  2590. "name": "Sebastian Bergmann",
  2591. "email": "sebastian@phpunit.de",
  2592. "role": "lead"
  2593. }
  2594. ],
  2595. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  2596. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  2597. "keywords": [
  2598. "filesystem",
  2599. "iterator"
  2600. ],
  2601. "support": {
  2602. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  2603. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  2604. },
  2605. "funding": [
  2606. {
  2607. "url": "https://github.com/sebastianbergmann",
  2608. "type": "github"
  2609. }
  2610. ],
  2611. "install-path": "../phpunit/php-file-iterator"
  2612. },
  2613. {
  2614. "name": "phpunit/php-invoker",
  2615. "version": "3.1.1",
  2616. "version_normalized": "3.1.1.0",
  2617. "source": {
  2618. "type": "git",
  2619. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  2620. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  2621. },
  2622. "dist": {
  2623. "type": "zip",
  2624. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  2625. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  2626. "shasum": ""
  2627. },
  2628. "require": {
  2629. "php": ">=7.3"
  2630. },
  2631. "require-dev": {
  2632. "ext-pcntl": "*",
  2633. "phpunit/phpunit": "^9.3"
  2634. },
  2635. "suggest": {
  2636. "ext-pcntl": "*"
  2637. },
  2638. "time": "2020-09-28T05:58:55+00:00",
  2639. "type": "library",
  2640. "extra": {
  2641. "branch-alias": {
  2642. "dev-master": "3.1-dev"
  2643. }
  2644. },
  2645. "installation-source": "dist",
  2646. "autoload": {
  2647. "classmap": [
  2648. "src/"
  2649. ]
  2650. },
  2651. "notification-url": "https://packagist.org/downloads/",
  2652. "license": [
  2653. "BSD-3-Clause"
  2654. ],
  2655. "authors": [
  2656. {
  2657. "name": "Sebastian Bergmann",
  2658. "email": "sebastian@phpunit.de",
  2659. "role": "lead"
  2660. }
  2661. ],
  2662. "description": "Invoke callables with a timeout",
  2663. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  2664. "keywords": [
  2665. "process"
  2666. ],
  2667. "support": {
  2668. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  2669. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  2670. },
  2671. "funding": [
  2672. {
  2673. "url": "https://github.com/sebastianbergmann",
  2674. "type": "github"
  2675. }
  2676. ],
  2677. "install-path": "../phpunit/php-invoker"
  2678. },
  2679. {
  2680. "name": "phpunit/php-text-template",
  2681. "version": "2.0.4",
  2682. "version_normalized": "2.0.4.0",
  2683. "source": {
  2684. "type": "git",
  2685. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  2686. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  2687. },
  2688. "dist": {
  2689. "type": "zip",
  2690. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  2691. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  2692. "shasum": ""
  2693. },
  2694. "require": {
  2695. "php": ">=7.3"
  2696. },
  2697. "require-dev": {
  2698. "phpunit/phpunit": "^9.3"
  2699. },
  2700. "time": "2020-10-26T05:33:50+00:00",
  2701. "type": "library",
  2702. "extra": {
  2703. "branch-alias": {
  2704. "dev-master": "2.0-dev"
  2705. }
  2706. },
  2707. "installation-source": "dist",
  2708. "autoload": {
  2709. "classmap": [
  2710. "src/"
  2711. ]
  2712. },
  2713. "notification-url": "https://packagist.org/downloads/",
  2714. "license": [
  2715. "BSD-3-Clause"
  2716. ],
  2717. "authors": [
  2718. {
  2719. "name": "Sebastian Bergmann",
  2720. "email": "sebastian@phpunit.de",
  2721. "role": "lead"
  2722. }
  2723. ],
  2724. "description": "Simple template engine.",
  2725. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  2726. "keywords": [
  2727. "template"
  2728. ],
  2729. "support": {
  2730. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  2731. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  2732. },
  2733. "funding": [
  2734. {
  2735. "url": "https://github.com/sebastianbergmann",
  2736. "type": "github"
  2737. }
  2738. ],
  2739. "install-path": "../phpunit/php-text-template"
  2740. },
  2741. {
  2742. "name": "phpunit/php-timer",
  2743. "version": "5.0.3",
  2744. "version_normalized": "5.0.3.0",
  2745. "source": {
  2746. "type": "git",
  2747. "url": "https://github.com/sebastianbergmann/php-timer.git",
  2748. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  2749. },
  2750. "dist": {
  2751. "type": "zip",
  2752. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  2753. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  2754. "shasum": ""
  2755. },
  2756. "require": {
  2757. "php": ">=7.3"
  2758. },
  2759. "require-dev": {
  2760. "phpunit/phpunit": "^9.3"
  2761. },
  2762. "time": "2020-10-26T13:16:10+00:00",
  2763. "type": "library",
  2764. "extra": {
  2765. "branch-alias": {
  2766. "dev-master": "5.0-dev"
  2767. }
  2768. },
  2769. "installation-source": "dist",
  2770. "autoload": {
  2771. "classmap": [
  2772. "src/"
  2773. ]
  2774. },
  2775. "notification-url": "https://packagist.org/downloads/",
  2776. "license": [
  2777. "BSD-3-Clause"
  2778. ],
  2779. "authors": [
  2780. {
  2781. "name": "Sebastian Bergmann",
  2782. "email": "sebastian@phpunit.de",
  2783. "role": "lead"
  2784. }
  2785. ],
  2786. "description": "Utility class for timing",
  2787. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  2788. "keywords": [
  2789. "timer"
  2790. ],
  2791. "support": {
  2792. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  2793. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  2794. },
  2795. "funding": [
  2796. {
  2797. "url": "https://github.com/sebastianbergmann",
  2798. "type": "github"
  2799. }
  2800. ],
  2801. "install-path": "../phpunit/php-timer"
  2802. },
  2803. {
  2804. "name": "phpunit/phpunit",
  2805. "version": "9.5.13",
  2806. "version_normalized": "9.5.13.0",
  2807. "source": {
  2808. "type": "git",
  2809. "url": "https://github.com/sebastianbergmann/phpunit.git",
  2810. "reference": "597cb647654ede35e43b137926dfdfef0fb11743"
  2811. },
  2812. "dist": {
  2813. "type": "zip",
  2814. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/597cb647654ede35e43b137926dfdfef0fb11743",
  2815. "reference": "597cb647654ede35e43b137926dfdfef0fb11743",
  2816. "shasum": ""
  2817. },
  2818. "require": {
  2819. "doctrine/instantiator": "^1.3.1",
  2820. "ext-dom": "*",
  2821. "ext-json": "*",
  2822. "ext-libxml": "*",
  2823. "ext-mbstring": "*",
  2824. "ext-xml": "*",
  2825. "ext-xmlwriter": "*",
  2826. "myclabs/deep-copy": "^1.10.1",
  2827. "phar-io/manifest": "^2.0.3",
  2828. "phar-io/version": "^3.0.2",
  2829. "php": ">=7.3",
  2830. "phpspec/prophecy": "^1.12.1",
  2831. "phpunit/php-code-coverage": "^9.2.7",
  2832. "phpunit/php-file-iterator": "^3.0.5",
  2833. "phpunit/php-invoker": "^3.1.1",
  2834. "phpunit/php-text-template": "^2.0.3",
  2835. "phpunit/php-timer": "^5.0.2",
  2836. "sebastian/cli-parser": "^1.0.1",
  2837. "sebastian/code-unit": "^1.0.6",
  2838. "sebastian/comparator": "^4.0.5",
  2839. "sebastian/diff": "^4.0.3",
  2840. "sebastian/environment": "^5.1.3",
  2841. "sebastian/exporter": "^4.0.3",
  2842. "sebastian/global-state": "^5.0.1",
  2843. "sebastian/object-enumerator": "^4.0.3",
  2844. "sebastian/resource-operations": "^3.0.3",
  2845. "sebastian/type": "^2.3.4",
  2846. "sebastian/version": "^3.0.2"
  2847. },
  2848. "require-dev": {
  2849. "ext-pdo": "*",
  2850. "phpspec/prophecy-phpunit": "^2.0.1"
  2851. },
  2852. "suggest": {
  2853. "ext-soap": "*",
  2854. "ext-xdebug": "*"
  2855. },
  2856. "time": "2022-01-24T07:33:35+00:00",
  2857. "bin": [
  2858. "phpunit"
  2859. ],
  2860. "type": "library",
  2861. "extra": {
  2862. "branch-alias": {
  2863. "dev-master": "9.5-dev"
  2864. }
  2865. },
  2866. "installation-source": "dist",
  2867. "autoload": {
  2868. "files": [
  2869. "src/Framework/Assert/Functions.php"
  2870. ],
  2871. "classmap": [
  2872. "src/"
  2873. ]
  2874. },
  2875. "notification-url": "https://packagist.org/downloads/",
  2876. "license": [
  2877. "BSD-3-Clause"
  2878. ],
  2879. "authors": [
  2880. {
  2881. "name": "Sebastian Bergmann",
  2882. "email": "sebastian@phpunit.de",
  2883. "role": "lead"
  2884. }
  2885. ],
  2886. "description": "The PHP Unit Testing framework.",
  2887. "homepage": "https://phpunit.de/",
  2888. "keywords": [
  2889. "phpunit",
  2890. "testing",
  2891. "xunit"
  2892. ],
  2893. "support": {
  2894. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  2895. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.13"
  2896. },
  2897. "funding": [
  2898. {
  2899. "url": "https://phpunit.de/sponsors.html",
  2900. "type": "custom"
  2901. },
  2902. {
  2903. "url": "https://github.com/sebastianbergmann",
  2904. "type": "github"
  2905. }
  2906. ],
  2907. "install-path": "../phpunit/phpunit"
  2908. },
  2909. {
  2910. "name": "psr/http-message",
  2911. "version": "1.0.1",
  2912. "version_normalized": "1.0.1.0",
  2913. "source": {
  2914. "type": "git",
  2915. "url": "https://github.com/php-fig/http-message.git",
  2916. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2917. },
  2918. "dist": {
  2919. "type": "zip",
  2920. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2921. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2922. "shasum": ""
  2923. },
  2924. "require": {
  2925. "php": ">=5.3.0"
  2926. },
  2927. "time": "2016-08-06T14:39:51+00:00",
  2928. "type": "library",
  2929. "extra": {
  2930. "branch-alias": {
  2931. "dev-master": "1.0.x-dev"
  2932. }
  2933. },
  2934. "installation-source": "dist",
  2935. "autoload": {
  2936. "psr-4": {
  2937. "Psr\\Http\\Message\\": "src/"
  2938. }
  2939. },
  2940. "notification-url": "https://packagist.org/downloads/",
  2941. "license": [
  2942. "MIT"
  2943. ],
  2944. "authors": [
  2945. {
  2946. "name": "PHP-FIG",
  2947. "homepage": "http://www.php-fig.org/"
  2948. }
  2949. ],
  2950. "description": "Common interface for HTTP messages",
  2951. "homepage": "https://github.com/php-fig/http-message",
  2952. "keywords": [
  2953. "http",
  2954. "http-message",
  2955. "psr",
  2956. "psr-7",
  2957. "request",
  2958. "response"
  2959. ],
  2960. "support": {
  2961. "source": "https://github.com/php-fig/http-message/tree/master"
  2962. },
  2963. "install-path": "../psr/http-message"
  2964. },
  2965. {
  2966. "name": "sebastian/cli-parser",
  2967. "version": "1.0.1",
  2968. "version_normalized": "1.0.1.0",
  2969. "source": {
  2970. "type": "git",
  2971. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  2972. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  2973. },
  2974. "dist": {
  2975. "type": "zip",
  2976. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  2977. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  2978. "shasum": ""
  2979. },
  2980. "require": {
  2981. "php": ">=7.3"
  2982. },
  2983. "require-dev": {
  2984. "phpunit/phpunit": "^9.3"
  2985. },
  2986. "time": "2020-09-28T06:08:49+00:00",
  2987. "type": "library",
  2988. "extra": {
  2989. "branch-alias": {
  2990. "dev-master": "1.0-dev"
  2991. }
  2992. },
  2993. "installation-source": "dist",
  2994. "autoload": {
  2995. "classmap": [
  2996. "src/"
  2997. ]
  2998. },
  2999. "notification-url": "https://packagist.org/downloads/",
  3000. "license": [
  3001. "BSD-3-Clause"
  3002. ],
  3003. "authors": [
  3004. {
  3005. "name": "Sebastian Bergmann",
  3006. "email": "sebastian@phpunit.de",
  3007. "role": "lead"
  3008. }
  3009. ],
  3010. "description": "Library for parsing CLI options",
  3011. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  3012. "support": {
  3013. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  3014. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  3015. },
  3016. "funding": [
  3017. {
  3018. "url": "https://github.com/sebastianbergmann",
  3019. "type": "github"
  3020. }
  3021. ],
  3022. "install-path": "../sebastian/cli-parser"
  3023. },
  3024. {
  3025. "name": "sebastian/code-unit",
  3026. "version": "1.0.8",
  3027. "version_normalized": "1.0.8.0",
  3028. "source": {
  3029. "type": "git",
  3030. "url": "https://github.com/sebastianbergmann/code-unit.git",
  3031. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  3032. },
  3033. "dist": {
  3034. "type": "zip",
  3035. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  3036. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  3037. "shasum": ""
  3038. },
  3039. "require": {
  3040. "php": ">=7.3"
  3041. },
  3042. "require-dev": {
  3043. "phpunit/phpunit": "^9.3"
  3044. },
  3045. "time": "2020-10-26T13:08:54+00:00",
  3046. "type": "library",
  3047. "extra": {
  3048. "branch-alias": {
  3049. "dev-master": "1.0-dev"
  3050. }
  3051. },
  3052. "installation-source": "dist",
  3053. "autoload": {
  3054. "classmap": [
  3055. "src/"
  3056. ]
  3057. },
  3058. "notification-url": "https://packagist.org/downloads/",
  3059. "license": [
  3060. "BSD-3-Clause"
  3061. ],
  3062. "authors": [
  3063. {
  3064. "name": "Sebastian Bergmann",
  3065. "email": "sebastian@phpunit.de",
  3066. "role": "lead"
  3067. }
  3068. ],
  3069. "description": "Collection of value objects that represent the PHP code units",
  3070. "homepage": "https://github.com/sebastianbergmann/code-unit",
  3071. "support": {
  3072. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  3073. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  3074. },
  3075. "funding": [
  3076. {
  3077. "url": "https://github.com/sebastianbergmann",
  3078. "type": "github"
  3079. }
  3080. ],
  3081. "install-path": "../sebastian/code-unit"
  3082. },
  3083. {
  3084. "name": "sebastian/code-unit-reverse-lookup",
  3085. "version": "2.0.3",
  3086. "version_normalized": "2.0.3.0",
  3087. "source": {
  3088. "type": "git",
  3089. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  3090. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  3091. },
  3092. "dist": {
  3093. "type": "zip",
  3094. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  3095. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  3096. "shasum": ""
  3097. },
  3098. "require": {
  3099. "php": ">=7.3"
  3100. },
  3101. "require-dev": {
  3102. "phpunit/phpunit": "^9.3"
  3103. },
  3104. "time": "2020-09-28T05:30:19+00:00",
  3105. "type": "library",
  3106. "extra": {
  3107. "branch-alias": {
  3108. "dev-master": "2.0-dev"
  3109. }
  3110. },
  3111. "installation-source": "dist",
  3112. "autoload": {
  3113. "classmap": [
  3114. "src/"
  3115. ]
  3116. },
  3117. "notification-url": "https://packagist.org/downloads/",
  3118. "license": [
  3119. "BSD-3-Clause"
  3120. ],
  3121. "authors": [
  3122. {
  3123. "name": "Sebastian Bergmann",
  3124. "email": "sebastian@phpunit.de"
  3125. }
  3126. ],
  3127. "description": "Looks up which function or method a line of code belongs to",
  3128. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  3129. "support": {
  3130. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  3131. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  3132. },
  3133. "funding": [
  3134. {
  3135. "url": "https://github.com/sebastianbergmann",
  3136. "type": "github"
  3137. }
  3138. ],
  3139. "install-path": "../sebastian/code-unit-reverse-lookup"
  3140. },
  3141. {
  3142. "name": "sebastian/comparator",
  3143. "version": "4.0.6",
  3144. "version_normalized": "4.0.6.0",
  3145. "source": {
  3146. "type": "git",
  3147. "url": "https://github.com/sebastianbergmann/comparator.git",
  3148. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  3149. },
  3150. "dist": {
  3151. "type": "zip",
  3152. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  3153. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  3154. "shasum": ""
  3155. },
  3156. "require": {
  3157. "php": ">=7.3",
  3158. "sebastian/diff": "^4.0",
  3159. "sebastian/exporter": "^4.0"
  3160. },
  3161. "require-dev": {
  3162. "phpunit/phpunit": "^9.3"
  3163. },
  3164. "time": "2020-10-26T15:49:45+00:00",
  3165. "type": "library",
  3166. "extra": {
  3167. "branch-alias": {
  3168. "dev-master": "4.0-dev"
  3169. }
  3170. },
  3171. "installation-source": "dist",
  3172. "autoload": {
  3173. "classmap": [
  3174. "src/"
  3175. ]
  3176. },
  3177. "notification-url": "https://packagist.org/downloads/",
  3178. "license": [
  3179. "BSD-3-Clause"
  3180. ],
  3181. "authors": [
  3182. {
  3183. "name": "Sebastian Bergmann",
  3184. "email": "sebastian@phpunit.de"
  3185. },
  3186. {
  3187. "name": "Jeff Welch",
  3188. "email": "whatthejeff@gmail.com"
  3189. },
  3190. {
  3191. "name": "Volker Dusch",
  3192. "email": "github@wallbash.com"
  3193. },
  3194. {
  3195. "name": "Bernhard Schussek",
  3196. "email": "bschussek@2bepublished.at"
  3197. }
  3198. ],
  3199. "description": "Provides the functionality to compare PHP values for equality",
  3200. "homepage": "https://github.com/sebastianbergmann/comparator",
  3201. "keywords": [
  3202. "comparator",
  3203. "compare",
  3204. "equality"
  3205. ],
  3206. "support": {
  3207. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  3208. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  3209. },
  3210. "funding": [
  3211. {
  3212. "url": "https://github.com/sebastianbergmann",
  3213. "type": "github"
  3214. }
  3215. ],
  3216. "install-path": "../sebastian/comparator"
  3217. },
  3218. {
  3219. "name": "sebastian/complexity",
  3220. "version": "2.0.2",
  3221. "version_normalized": "2.0.2.0",
  3222. "source": {
  3223. "type": "git",
  3224. "url": "https://github.com/sebastianbergmann/complexity.git",
  3225. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  3226. },
  3227. "dist": {
  3228. "type": "zip",
  3229. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  3230. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  3231. "shasum": ""
  3232. },
  3233. "require": {
  3234. "nikic/php-parser": "^4.7",
  3235. "php": ">=7.3"
  3236. },
  3237. "require-dev": {
  3238. "phpunit/phpunit": "^9.3"
  3239. },
  3240. "time": "2020-10-26T15:52:27+00:00",
  3241. "type": "library",
  3242. "extra": {
  3243. "branch-alias": {
  3244. "dev-master": "2.0-dev"
  3245. }
  3246. },
  3247. "installation-source": "dist",
  3248. "autoload": {
  3249. "classmap": [
  3250. "src/"
  3251. ]
  3252. },
  3253. "notification-url": "https://packagist.org/downloads/",
  3254. "license": [
  3255. "BSD-3-Clause"
  3256. ],
  3257. "authors": [
  3258. {
  3259. "name": "Sebastian Bergmann",
  3260. "email": "sebastian@phpunit.de",
  3261. "role": "lead"
  3262. }
  3263. ],
  3264. "description": "Library for calculating the complexity of PHP code units",
  3265. "homepage": "https://github.com/sebastianbergmann/complexity",
  3266. "support": {
  3267. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  3268. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  3269. },
  3270. "funding": [
  3271. {
  3272. "url": "https://github.com/sebastianbergmann",
  3273. "type": "github"
  3274. }
  3275. ],
  3276. "install-path": "../sebastian/complexity"
  3277. },
  3278. {
  3279. "name": "sebastian/diff",
  3280. "version": "4.0.4",
  3281. "version_normalized": "4.0.4.0",
  3282. "source": {
  3283. "type": "git",
  3284. "url": "https://github.com/sebastianbergmann/diff.git",
  3285. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  3286. },
  3287. "dist": {
  3288. "type": "zip",
  3289. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  3290. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  3291. "shasum": ""
  3292. },
  3293. "require": {
  3294. "php": ">=7.3"
  3295. },
  3296. "require-dev": {
  3297. "phpunit/phpunit": "^9.3",
  3298. "symfony/process": "^4.2 || ^5"
  3299. },
  3300. "time": "2020-10-26T13:10:38+00:00",
  3301. "type": "library",
  3302. "extra": {
  3303. "branch-alias": {
  3304. "dev-master": "4.0-dev"
  3305. }
  3306. },
  3307. "installation-source": "dist",
  3308. "autoload": {
  3309. "classmap": [
  3310. "src/"
  3311. ]
  3312. },
  3313. "notification-url": "https://packagist.org/downloads/",
  3314. "license": [
  3315. "BSD-3-Clause"
  3316. ],
  3317. "authors": [
  3318. {
  3319. "name": "Sebastian Bergmann",
  3320. "email": "sebastian@phpunit.de"
  3321. },
  3322. {
  3323. "name": "Kore Nordmann",
  3324. "email": "mail@kore-nordmann.de"
  3325. }
  3326. ],
  3327. "description": "Diff implementation",
  3328. "homepage": "https://github.com/sebastianbergmann/diff",
  3329. "keywords": [
  3330. "diff",
  3331. "udiff",
  3332. "unidiff",
  3333. "unified diff"
  3334. ],
  3335. "support": {
  3336. "issues": "https://github.com/sebastianbergmann/diff/issues",
  3337. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  3338. },
  3339. "funding": [
  3340. {
  3341. "url": "https://github.com/sebastianbergmann",
  3342. "type": "github"
  3343. }
  3344. ],
  3345. "install-path": "../sebastian/diff"
  3346. },
  3347. {
  3348. "name": "sebastian/environment",
  3349. "version": "5.1.3",
  3350. "version_normalized": "5.1.3.0",
  3351. "source": {
  3352. "type": "git",
  3353. "url": "https://github.com/sebastianbergmann/environment.git",
  3354. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  3355. },
  3356. "dist": {
  3357. "type": "zip",
  3358. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  3359. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  3360. "shasum": ""
  3361. },
  3362. "require": {
  3363. "php": ">=7.3"
  3364. },
  3365. "require-dev": {
  3366. "phpunit/phpunit": "^9.3"
  3367. },
  3368. "suggest": {
  3369. "ext-posix": "*"
  3370. },
  3371. "time": "2020-09-28T05:52:38+00:00",
  3372. "type": "library",
  3373. "extra": {
  3374. "branch-alias": {
  3375. "dev-master": "5.1-dev"
  3376. }
  3377. },
  3378. "installation-source": "dist",
  3379. "autoload": {
  3380. "classmap": [
  3381. "src/"
  3382. ]
  3383. },
  3384. "notification-url": "https://packagist.org/downloads/",
  3385. "license": [
  3386. "BSD-3-Clause"
  3387. ],
  3388. "authors": [
  3389. {
  3390. "name": "Sebastian Bergmann",
  3391. "email": "sebastian@phpunit.de"
  3392. }
  3393. ],
  3394. "description": "Provides functionality to handle HHVM/PHP environments",
  3395. "homepage": "http://www.github.com/sebastianbergmann/environment",
  3396. "keywords": [
  3397. "Xdebug",
  3398. "environment",
  3399. "hhvm"
  3400. ],
  3401. "support": {
  3402. "issues": "https://github.com/sebastianbergmann/environment/issues",
  3403. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  3404. },
  3405. "funding": [
  3406. {
  3407. "url": "https://github.com/sebastianbergmann",
  3408. "type": "github"
  3409. }
  3410. ],
  3411. "install-path": "../sebastian/environment"
  3412. },
  3413. {
  3414. "name": "sebastian/exporter",
  3415. "version": "4.0.4",
  3416. "version_normalized": "4.0.4.0",
  3417. "source": {
  3418. "type": "git",
  3419. "url": "https://github.com/sebastianbergmann/exporter.git",
  3420. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  3421. },
  3422. "dist": {
  3423. "type": "zip",
  3424. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  3425. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  3426. "shasum": ""
  3427. },
  3428. "require": {
  3429. "php": ">=7.3",
  3430. "sebastian/recursion-context": "^4.0"
  3431. },
  3432. "require-dev": {
  3433. "ext-mbstring": "*",
  3434. "phpunit/phpunit": "^9.3"
  3435. },
  3436. "time": "2021-11-11T14:18:36+00:00",
  3437. "type": "library",
  3438. "extra": {
  3439. "branch-alias": {
  3440. "dev-master": "4.0-dev"
  3441. }
  3442. },
  3443. "installation-source": "dist",
  3444. "autoload": {
  3445. "classmap": [
  3446. "src/"
  3447. ]
  3448. },
  3449. "notification-url": "https://packagist.org/downloads/",
  3450. "license": [
  3451. "BSD-3-Clause"
  3452. ],
  3453. "authors": [
  3454. {
  3455. "name": "Sebastian Bergmann",
  3456. "email": "sebastian@phpunit.de"
  3457. },
  3458. {
  3459. "name": "Jeff Welch",
  3460. "email": "whatthejeff@gmail.com"
  3461. },
  3462. {
  3463. "name": "Volker Dusch",
  3464. "email": "github@wallbash.com"
  3465. },
  3466. {
  3467. "name": "Adam Harvey",
  3468. "email": "aharvey@php.net"
  3469. },
  3470. {
  3471. "name": "Bernhard Schussek",
  3472. "email": "bschussek@gmail.com"
  3473. }
  3474. ],
  3475. "description": "Provides the functionality to export PHP variables for visualization",
  3476. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  3477. "keywords": [
  3478. "export",
  3479. "exporter"
  3480. ],
  3481. "support": {
  3482. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  3483. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  3484. },
  3485. "funding": [
  3486. {
  3487. "url": "https://github.com/sebastianbergmann",
  3488. "type": "github"
  3489. }
  3490. ],
  3491. "install-path": "../sebastian/exporter"
  3492. },
  3493. {
  3494. "name": "sebastian/global-state",
  3495. "version": "5.0.5",
  3496. "version_normalized": "5.0.5.0",
  3497. "source": {
  3498. "type": "git",
  3499. "url": "https://github.com/sebastianbergmann/global-state.git",
  3500. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  3501. },
  3502. "dist": {
  3503. "type": "zip",
  3504. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  3505. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  3506. "shasum": ""
  3507. },
  3508. "require": {
  3509. "php": ">=7.3",
  3510. "sebastian/object-reflector": "^2.0",
  3511. "sebastian/recursion-context": "^4.0"
  3512. },
  3513. "require-dev": {
  3514. "ext-dom": "*",
  3515. "phpunit/phpunit": "^9.3"
  3516. },
  3517. "suggest": {
  3518. "ext-uopz": "*"
  3519. },
  3520. "time": "2022-02-14T08:28:10+00:00",
  3521. "type": "library",
  3522. "extra": {
  3523. "branch-alias": {
  3524. "dev-master": "5.0-dev"
  3525. }
  3526. },
  3527. "installation-source": "dist",
  3528. "autoload": {
  3529. "classmap": [
  3530. "src/"
  3531. ]
  3532. },
  3533. "notification-url": "https://packagist.org/downloads/",
  3534. "license": [
  3535. "BSD-3-Clause"
  3536. ],
  3537. "authors": [
  3538. {
  3539. "name": "Sebastian Bergmann",
  3540. "email": "sebastian@phpunit.de"
  3541. }
  3542. ],
  3543. "description": "Snapshotting of global state",
  3544. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  3545. "keywords": [
  3546. "global state"
  3547. ],
  3548. "support": {
  3549. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  3550. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  3551. },
  3552. "funding": [
  3553. {
  3554. "url": "https://github.com/sebastianbergmann",
  3555. "type": "github"
  3556. }
  3557. ],
  3558. "install-path": "../sebastian/global-state"
  3559. },
  3560. {
  3561. "name": "sebastian/lines-of-code",
  3562. "version": "1.0.3",
  3563. "version_normalized": "1.0.3.0",
  3564. "source": {
  3565. "type": "git",
  3566. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  3567. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  3568. },
  3569. "dist": {
  3570. "type": "zip",
  3571. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  3572. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  3573. "shasum": ""
  3574. },
  3575. "require": {
  3576. "nikic/php-parser": "^4.6",
  3577. "php": ">=7.3"
  3578. },
  3579. "require-dev": {
  3580. "phpunit/phpunit": "^9.3"
  3581. },
  3582. "time": "2020-11-28T06:42:11+00:00",
  3583. "type": "library",
  3584. "extra": {
  3585. "branch-alias": {
  3586. "dev-master": "1.0-dev"
  3587. }
  3588. },
  3589. "installation-source": "dist",
  3590. "autoload": {
  3591. "classmap": [
  3592. "src/"
  3593. ]
  3594. },
  3595. "notification-url": "https://packagist.org/downloads/",
  3596. "license": [
  3597. "BSD-3-Clause"
  3598. ],
  3599. "authors": [
  3600. {
  3601. "name": "Sebastian Bergmann",
  3602. "email": "sebastian@phpunit.de",
  3603. "role": "lead"
  3604. }
  3605. ],
  3606. "description": "Library for counting the lines of code in PHP source code",
  3607. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  3608. "support": {
  3609. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  3610. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  3611. },
  3612. "funding": [
  3613. {
  3614. "url": "https://github.com/sebastianbergmann",
  3615. "type": "github"
  3616. }
  3617. ],
  3618. "install-path": "../sebastian/lines-of-code"
  3619. },
  3620. {
  3621. "name": "sebastian/object-enumerator",
  3622. "version": "4.0.4",
  3623. "version_normalized": "4.0.4.0",
  3624. "source": {
  3625. "type": "git",
  3626. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  3627. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  3628. },
  3629. "dist": {
  3630. "type": "zip",
  3631. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  3632. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  3633. "shasum": ""
  3634. },
  3635. "require": {
  3636. "php": ">=7.3",
  3637. "sebastian/object-reflector": "^2.0",
  3638. "sebastian/recursion-context": "^4.0"
  3639. },
  3640. "require-dev": {
  3641. "phpunit/phpunit": "^9.3"
  3642. },
  3643. "time": "2020-10-26T13:12:34+00:00",
  3644. "type": "library",
  3645. "extra": {
  3646. "branch-alias": {
  3647. "dev-master": "4.0-dev"
  3648. }
  3649. },
  3650. "installation-source": "dist",
  3651. "autoload": {
  3652. "classmap": [
  3653. "src/"
  3654. ]
  3655. },
  3656. "notification-url": "https://packagist.org/downloads/",
  3657. "license": [
  3658. "BSD-3-Clause"
  3659. ],
  3660. "authors": [
  3661. {
  3662. "name": "Sebastian Bergmann",
  3663. "email": "sebastian@phpunit.de"
  3664. }
  3665. ],
  3666. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  3667. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  3668. "support": {
  3669. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  3670. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  3671. },
  3672. "funding": [
  3673. {
  3674. "url": "https://github.com/sebastianbergmann",
  3675. "type": "github"
  3676. }
  3677. ],
  3678. "install-path": "../sebastian/object-enumerator"
  3679. },
  3680. {
  3681. "name": "sebastian/object-reflector",
  3682. "version": "2.0.4",
  3683. "version_normalized": "2.0.4.0",
  3684. "source": {
  3685. "type": "git",
  3686. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  3687. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  3688. },
  3689. "dist": {
  3690. "type": "zip",
  3691. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  3692. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  3693. "shasum": ""
  3694. },
  3695. "require": {
  3696. "php": ">=7.3"
  3697. },
  3698. "require-dev": {
  3699. "phpunit/phpunit": "^9.3"
  3700. },
  3701. "time": "2020-10-26T13:14:26+00:00",
  3702. "type": "library",
  3703. "extra": {
  3704. "branch-alias": {
  3705. "dev-master": "2.0-dev"
  3706. }
  3707. },
  3708. "installation-source": "dist",
  3709. "autoload": {
  3710. "classmap": [
  3711. "src/"
  3712. ]
  3713. },
  3714. "notification-url": "https://packagist.org/downloads/",
  3715. "license": [
  3716. "BSD-3-Clause"
  3717. ],
  3718. "authors": [
  3719. {
  3720. "name": "Sebastian Bergmann",
  3721. "email": "sebastian@phpunit.de"
  3722. }
  3723. ],
  3724. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  3725. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  3726. "support": {
  3727. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  3728. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  3729. },
  3730. "funding": [
  3731. {
  3732. "url": "https://github.com/sebastianbergmann",
  3733. "type": "github"
  3734. }
  3735. ],
  3736. "install-path": "../sebastian/object-reflector"
  3737. },
  3738. {
  3739. "name": "sebastian/recursion-context",
  3740. "version": "4.0.4",
  3741. "version_normalized": "4.0.4.0",
  3742. "source": {
  3743. "type": "git",
  3744. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  3745. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  3746. },
  3747. "dist": {
  3748. "type": "zip",
  3749. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  3750. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  3751. "shasum": ""
  3752. },
  3753. "require": {
  3754. "php": ">=7.3"
  3755. },
  3756. "require-dev": {
  3757. "phpunit/phpunit": "^9.3"
  3758. },
  3759. "time": "2020-10-26T13:17:30+00:00",
  3760. "type": "library",
  3761. "extra": {
  3762. "branch-alias": {
  3763. "dev-master": "4.0-dev"
  3764. }
  3765. },
  3766. "installation-source": "dist",
  3767. "autoload": {
  3768. "classmap": [
  3769. "src/"
  3770. ]
  3771. },
  3772. "notification-url": "https://packagist.org/downloads/",
  3773. "license": [
  3774. "BSD-3-Clause"
  3775. ],
  3776. "authors": [
  3777. {
  3778. "name": "Sebastian Bergmann",
  3779. "email": "sebastian@phpunit.de"
  3780. },
  3781. {
  3782. "name": "Jeff Welch",
  3783. "email": "whatthejeff@gmail.com"
  3784. },
  3785. {
  3786. "name": "Adam Harvey",
  3787. "email": "aharvey@php.net"
  3788. }
  3789. ],
  3790. "description": "Provides functionality to recursively process PHP variables",
  3791. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  3792. "support": {
  3793. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  3794. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  3795. },
  3796. "funding": [
  3797. {
  3798. "url": "https://github.com/sebastianbergmann",
  3799. "type": "github"
  3800. }
  3801. ],
  3802. "install-path": "../sebastian/recursion-context"
  3803. },
  3804. {
  3805. "name": "sebastian/resource-operations",
  3806. "version": "3.0.3",
  3807. "version_normalized": "3.0.3.0",
  3808. "source": {
  3809. "type": "git",
  3810. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  3811. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  3812. },
  3813. "dist": {
  3814. "type": "zip",
  3815. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  3816. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  3817. "shasum": ""
  3818. },
  3819. "require": {
  3820. "php": ">=7.3"
  3821. },
  3822. "require-dev": {
  3823. "phpunit/phpunit": "^9.0"
  3824. },
  3825. "time": "2020-09-28T06:45:17+00:00",
  3826. "type": "library",
  3827. "extra": {
  3828. "branch-alias": {
  3829. "dev-master": "3.0-dev"
  3830. }
  3831. },
  3832. "installation-source": "dist",
  3833. "autoload": {
  3834. "classmap": [
  3835. "src/"
  3836. ]
  3837. },
  3838. "notification-url": "https://packagist.org/downloads/",
  3839. "license": [
  3840. "BSD-3-Clause"
  3841. ],
  3842. "authors": [
  3843. {
  3844. "name": "Sebastian Bergmann",
  3845. "email": "sebastian@phpunit.de"
  3846. }
  3847. ],
  3848. "description": "Provides a list of PHP built-in functions that operate on resources",
  3849. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  3850. "support": {
  3851. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  3852. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  3853. },
  3854. "funding": [
  3855. {
  3856. "url": "https://github.com/sebastianbergmann",
  3857. "type": "github"
  3858. }
  3859. ],
  3860. "install-path": "../sebastian/resource-operations"
  3861. },
  3862. {
  3863. "name": "sebastian/type",
  3864. "version": "2.3.4",
  3865. "version_normalized": "2.3.4.0",
  3866. "source": {
  3867. "type": "git",
  3868. "url": "https://github.com/sebastianbergmann/type.git",
  3869. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914"
  3870. },
  3871. "dist": {
  3872. "type": "zip",
  3873. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  3874. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  3875. "shasum": ""
  3876. },
  3877. "require": {
  3878. "php": ">=7.3"
  3879. },
  3880. "require-dev": {
  3881. "phpunit/phpunit": "^9.3"
  3882. },
  3883. "time": "2021-06-15T12:49:02+00:00",
  3884. "type": "library",
  3885. "extra": {
  3886. "branch-alias": {
  3887. "dev-master": "2.3-dev"
  3888. }
  3889. },
  3890. "installation-source": "dist",
  3891. "autoload": {
  3892. "classmap": [
  3893. "src/"
  3894. ]
  3895. },
  3896. "notification-url": "https://packagist.org/downloads/",
  3897. "license": [
  3898. "BSD-3-Clause"
  3899. ],
  3900. "authors": [
  3901. {
  3902. "name": "Sebastian Bergmann",
  3903. "email": "sebastian@phpunit.de",
  3904. "role": "lead"
  3905. }
  3906. ],
  3907. "description": "Collection of value objects that represent the types of the PHP type system",
  3908. "homepage": "https://github.com/sebastianbergmann/type",
  3909. "support": {
  3910. "issues": "https://github.com/sebastianbergmann/type/issues",
  3911. "source": "https://github.com/sebastianbergmann/type/tree/2.3.4"
  3912. },
  3913. "funding": [
  3914. {
  3915. "url": "https://github.com/sebastianbergmann",
  3916. "type": "github"
  3917. }
  3918. ],
  3919. "install-path": "../sebastian/type"
  3920. },
  3921. {
  3922. "name": "sebastian/version",
  3923. "version": "3.0.2",
  3924. "version_normalized": "3.0.2.0",
  3925. "source": {
  3926. "type": "git",
  3927. "url": "https://github.com/sebastianbergmann/version.git",
  3928. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  3929. },
  3930. "dist": {
  3931. "type": "zip",
  3932. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  3933. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  3934. "shasum": ""
  3935. },
  3936. "require": {
  3937. "php": ">=7.3"
  3938. },
  3939. "time": "2020-09-28T06:39:44+00:00",
  3940. "type": "library",
  3941. "extra": {
  3942. "branch-alias": {
  3943. "dev-master": "3.0-dev"
  3944. }
  3945. },
  3946. "installation-source": "dist",
  3947. "autoload": {
  3948. "classmap": [
  3949. "src/"
  3950. ]
  3951. },
  3952. "notification-url": "https://packagist.org/downloads/",
  3953. "license": [
  3954. "BSD-3-Clause"
  3955. ],
  3956. "authors": [
  3957. {
  3958. "name": "Sebastian Bergmann",
  3959. "email": "sebastian@phpunit.de",
  3960. "role": "lead"
  3961. }
  3962. ],
  3963. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  3964. "homepage": "https://github.com/sebastianbergmann/version",
  3965. "support": {
  3966. "issues": "https://github.com/sebastianbergmann/version/issues",
  3967. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  3968. },
  3969. "funding": [
  3970. {
  3971. "url": "https://github.com/sebastianbergmann",
  3972. "type": "github"
  3973. }
  3974. ],
  3975. "install-path": "../sebastian/version"
  3976. },
  3977. {
  3978. "name": "symfony/polyfill-ctype",
  3979. "version": "v1.24.0",
  3980. "version_normalized": "1.24.0.0",
  3981. "source": {
  3982. "type": "git",
  3983. "url": "https://github.com/symfony/polyfill-ctype.git",
  3984. "reference": "30885182c981ab175d4d034db0f6f469898070ab"
  3985. },
  3986. "dist": {
  3987. "type": "zip",
  3988. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
  3989. "reference": "30885182c981ab175d4d034db0f6f469898070ab",
  3990. "shasum": ""
  3991. },
  3992. "require": {
  3993. "php": ">=7.1"
  3994. },
  3995. "provide": {
  3996. "ext-ctype": "*"
  3997. },
  3998. "suggest": {
  3999. "ext-ctype": "For best performance"
  4000. },
  4001. "time": "2021-10-20T20:35:02+00:00",
  4002. "type": "library",
  4003. "extra": {
  4004. "branch-alias": {
  4005. "dev-main": "1.23-dev"
  4006. },
  4007. "thanks": {
  4008. "name": "symfony/polyfill",
  4009. "url": "https://github.com/symfony/polyfill"
  4010. }
  4011. },
  4012. "installation-source": "dist",
  4013. "autoload": {
  4014. "psr-4": {
  4015. "Symfony\\Polyfill\\Ctype\\": ""
  4016. },
  4017. "files": [
  4018. "bootstrap.php"
  4019. ]
  4020. },
  4021. "notification-url": "https://packagist.org/downloads/",
  4022. "license": [
  4023. "MIT"
  4024. ],
  4025. "authors": [
  4026. {
  4027. "name": "Gert de Pagter",
  4028. "email": "BackEndTea@gmail.com"
  4029. },
  4030. {
  4031. "name": "Symfony Community",
  4032. "homepage": "https://symfony.com/contributors"
  4033. }
  4034. ],
  4035. "description": "Symfony polyfill for ctype functions",
  4036. "homepage": "https://symfony.com",
  4037. "keywords": [
  4038. "compatibility",
  4039. "ctype",
  4040. "polyfill",
  4041. "portable"
  4042. ],
  4043. "support": {
  4044. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.24.0"
  4045. },
  4046. "funding": [
  4047. {
  4048. "url": "https://symfony.com/sponsor",
  4049. "type": "custom"
  4050. },
  4051. {
  4052. "url": "https://github.com/fabpot",
  4053. "type": "github"
  4054. },
  4055. {
  4056. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4057. "type": "tidelift"
  4058. }
  4059. ],
  4060. "install-path": "../symfony/polyfill-ctype"
  4061. },
  4062. {
  4063. "name": "theseer/tokenizer",
  4064. "version": "1.2.1",
  4065. "version_normalized": "1.2.1.0",
  4066. "source": {
  4067. "type": "git",
  4068. "url": "https://github.com/theseer/tokenizer.git",
  4069. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  4070. },
  4071. "dist": {
  4072. "type": "zip",
  4073. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  4074. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  4075. "shasum": ""
  4076. },
  4077. "require": {
  4078. "ext-dom": "*",
  4079. "ext-tokenizer": "*",
  4080. "ext-xmlwriter": "*",
  4081. "php": "^7.2 || ^8.0"
  4082. },
  4083. "time": "2021-07-28T10:34:58+00:00",
  4084. "type": "library",
  4085. "installation-source": "dist",
  4086. "autoload": {
  4087. "classmap": [
  4088. "src/"
  4089. ]
  4090. },
  4091. "notification-url": "https://packagist.org/downloads/",
  4092. "license": [
  4093. "BSD-3-Clause"
  4094. ],
  4095. "authors": [
  4096. {
  4097. "name": "Arne Blankerts",
  4098. "email": "arne@blankerts.de",
  4099. "role": "Developer"
  4100. }
  4101. ],
  4102. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  4103. "support": {
  4104. "issues": "https://github.com/theseer/tokenizer/issues",
  4105. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  4106. },
  4107. "funding": [
  4108. {
  4109. "url": "https://github.com/theseer",
  4110. "type": "github"
  4111. }
  4112. ],
  4113. "install-path": "../theseer/tokenizer"
  4114. },
  4115. {
  4116. "name": "webmozart/assert",
  4117. "version": "1.10.0",
  4118. "version_normalized": "1.10.0.0",
  4119. "source": {
  4120. "type": "git",
  4121. "url": "https://github.com/webmozarts/assert.git",
  4122. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  4123. },
  4124. "dist": {
  4125. "type": "zip",
  4126. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  4127. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  4128. "shasum": ""
  4129. },
  4130. "require": {
  4131. "php": "^7.2 || ^8.0",
  4132. "symfony/polyfill-ctype": "^1.8"
  4133. },
  4134. "conflict": {
  4135. "phpstan/phpstan": "<0.12.20",
  4136. "vimeo/psalm": "<4.6.1 || 4.6.2"
  4137. },
  4138. "require-dev": {
  4139. "phpunit/phpunit": "^8.5.13"
  4140. },
  4141. "time": "2021-03-09T10:59:23+00:00",
  4142. "type": "library",
  4143. "extra": {
  4144. "branch-alias": {
  4145. "dev-master": "1.10-dev"
  4146. }
  4147. },
  4148. "installation-source": "dist",
  4149. "autoload": {
  4150. "psr-4": {
  4151. "Webmozart\\Assert\\": "src/"
  4152. }
  4153. },
  4154. "notification-url": "https://packagist.org/downloads/",
  4155. "license": [
  4156. "MIT"
  4157. ],
  4158. "authors": [
  4159. {
  4160. "name": "Bernhard Schussek",
  4161. "email": "bschussek@gmail.com"
  4162. }
  4163. ],
  4164. "description": "Assertions to validate method input/output with nice error messages.",
  4165. "keywords": [
  4166. "assert",
  4167. "check",
  4168. "validate"
  4169. ],
  4170. "support": {
  4171. "issues": "https://github.com/webmozarts/assert/issues",
  4172. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  4173. },
  4174. "install-path": "../webmozart/assert"
  4175. }
  4176. ],
  4177. "dev": true,
  4178. "dev-package-names": []
  4179. }