composer.lock 131 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "2248c3bddb08bbee51d5b937bb4f8dce",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "1.0.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "3c430083d0b41ceed84ecccf9dac613241d7305d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/3c430083d0b41ceed84ecccf9dac613241d7305d",
  20. "reference": "3c430083d0b41ceed84ecccf9dac613241d7305d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.1.8 || ^8.0"
  25. },
  26. "conflict": {
  27. "doctrine/dbal": ">=3.7.0"
  28. },
  29. "require-dev": {
  30. "doctrine/dbal": ">=2.0.0",
  31. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  32. "phpunit/phpunit": "^10.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "KyleKatarn",
  47. "email": "kylekatarnls@gmail.com"
  48. }
  49. ],
  50. "description": "Types to use Carbon in Doctrine",
  51. "keywords": [
  52. "carbon",
  53. "date",
  54. "datetime",
  55. "doctrine",
  56. "time"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  60. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/1.0.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/kylekatarnls",
  65. "type": "github"
  66. },
  67. {
  68. "url": "https://opencollective.com/Carbon",
  69. "type": "open_collective"
  70. },
  71. {
  72. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  73. "type": "tidelift"
  74. }
  75. ],
  76. "time": "2023-10-01T12:35:29+00:00"
  77. },
  78. {
  79. "name": "easywechat-composer/easywechat-composer",
  80. "version": "1.4.1",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/mingyoung/easywechat-composer.git",
  84. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  89. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "composer-plugin-api": "^1.0 || ^2.0",
  94. "php": ">=7.0"
  95. },
  96. "require-dev": {
  97. "composer/composer": "^1.0 || ^2.0",
  98. "phpunit/phpunit": "^6.5 || ^7.0"
  99. },
  100. "type": "composer-plugin",
  101. "extra": {
  102. "class": "EasyWeChatComposer\\Plugin"
  103. },
  104. "autoload": {
  105. "psr-4": {
  106. "EasyWeChatComposer\\": "src/"
  107. }
  108. },
  109. "notification-url": "https://packagist.org/downloads/",
  110. "license": [
  111. "MIT"
  112. ],
  113. "authors": [
  114. {
  115. "name": "张铭阳",
  116. "email": "mingyoungcheung@gmail.com"
  117. }
  118. ],
  119. "description": "The composer plugin for EasyWeChat",
  120. "support": {
  121. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  122. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  123. },
  124. "time": "2021-07-05T04:03:22+00:00"
  125. },
  126. {
  127. "name": "ezyang/htmlpurifier",
  128. "version": "v4.17.0",
  129. "dist": {
  130. "type": "zip",
  131. "url": "https://mirrors.cloud.tencent.com/repository/composer/ezyang/htmlpurifier/v4.17.0/ezyang-htmlpurifier-v4.17.0.zip",
  132. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  133. "shasum": ""
  134. },
  135. "require": {
  136. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  137. },
  138. "require-dev": {
  139. "cerdic/css-tidy": "^1.7 || ^2.0",
  140. "simpletest/simpletest": "dev-master"
  141. },
  142. "suggest": {
  143. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  144. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  145. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  146. "ext-tidy": "Used for pretty-printing HTML"
  147. },
  148. "type": "library",
  149. "autoload": {
  150. "files": [
  151. "library/HTMLPurifier.composer.php"
  152. ],
  153. "psr-0": {
  154. "HTMLPurifier": "library/"
  155. },
  156. "exclude-from-classmap": [
  157. "/library/HTMLPurifier/Language/"
  158. ]
  159. },
  160. "license": [
  161. "LGPL-2.1-or-later"
  162. ],
  163. "authors": [
  164. {
  165. "name": "Edward Z. Yang",
  166. "email": "admin@htmlpurifier.org",
  167. "homepage": "http://ezyang.com"
  168. }
  169. ],
  170. "description": "Standards compliant HTML filter written in PHP",
  171. "homepage": "http://htmlpurifier.org/",
  172. "keywords": [
  173. "html"
  174. ],
  175. "time": "2023-11-17T15:01:25+00:00"
  176. },
  177. {
  178. "name": "guzzlehttp/guzzle",
  179. "version": "7.8.1",
  180. "source": {
  181. "type": "git",
  182. "url": "https://github.com/guzzle/guzzle.git",
  183. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  184. },
  185. "dist": {
  186. "type": "zip",
  187. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  188. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  189. "shasum": ""
  190. },
  191. "require": {
  192. "ext-json": "*",
  193. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  194. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  195. "php": "^7.2.5 || ^8.0",
  196. "psr/http-client": "^1.0",
  197. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  198. },
  199. "provide": {
  200. "psr/http-client-implementation": "1.0"
  201. },
  202. "require-dev": {
  203. "bamarni/composer-bin-plugin": "^1.8.2",
  204. "ext-curl": "*",
  205. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  206. "php-http/message-factory": "^1.1",
  207. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  208. "psr/log": "^1.1 || ^2.0 || ^3.0"
  209. },
  210. "suggest": {
  211. "ext-curl": "Required for CURL handler support",
  212. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  213. "psr/log": "Required for using the Log middleware"
  214. },
  215. "type": "library",
  216. "extra": {
  217. "bamarni-bin": {
  218. "bin-links": true,
  219. "forward-command": false
  220. }
  221. },
  222. "autoload": {
  223. "files": [
  224. "src/functions_include.php"
  225. ],
  226. "psr-4": {
  227. "GuzzleHttp\\": "src/"
  228. }
  229. },
  230. "notification-url": "https://packagist.org/downloads/",
  231. "license": [
  232. "MIT"
  233. ],
  234. "authors": [
  235. {
  236. "name": "Graham Campbell",
  237. "email": "hello@gjcampbell.co.uk",
  238. "homepage": "https://github.com/GrahamCampbell"
  239. },
  240. {
  241. "name": "Michael Dowling",
  242. "email": "mtdowling@gmail.com",
  243. "homepage": "https://github.com/mtdowling"
  244. },
  245. {
  246. "name": "Jeremy Lindblom",
  247. "email": "jeremeamia@gmail.com",
  248. "homepage": "https://github.com/jeremeamia"
  249. },
  250. {
  251. "name": "George Mponos",
  252. "email": "gmponos@gmail.com",
  253. "homepage": "https://github.com/gmponos"
  254. },
  255. {
  256. "name": "Tobias Nyholm",
  257. "email": "tobias.nyholm@gmail.com",
  258. "homepage": "https://github.com/Nyholm"
  259. },
  260. {
  261. "name": "Márk Sági-Kazár",
  262. "email": "mark.sagikazar@gmail.com",
  263. "homepage": "https://github.com/sagikazarmark"
  264. },
  265. {
  266. "name": "Tobias Schultze",
  267. "email": "webmaster@tubo-world.de",
  268. "homepage": "https://github.com/Tobion"
  269. }
  270. ],
  271. "description": "Guzzle is a PHP HTTP client library",
  272. "keywords": [
  273. "client",
  274. "curl",
  275. "framework",
  276. "http",
  277. "http client",
  278. "psr-18",
  279. "psr-7",
  280. "rest",
  281. "web service"
  282. ],
  283. "support": {
  284. "issues": "https://github.com/guzzle/guzzle/issues",
  285. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  286. },
  287. "funding": [
  288. {
  289. "url": "https://github.com/GrahamCampbell",
  290. "type": "github"
  291. },
  292. {
  293. "url": "https://github.com/Nyholm",
  294. "type": "github"
  295. },
  296. {
  297. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  298. "type": "tidelift"
  299. }
  300. ],
  301. "time": "2023-12-03T20:35:24+00:00"
  302. },
  303. {
  304. "name": "guzzlehttp/promises",
  305. "version": "2.0.2",
  306. "source": {
  307. "type": "git",
  308. "url": "https://github.com/guzzle/promises.git",
  309. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  310. },
  311. "dist": {
  312. "type": "zip",
  313. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  314. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  315. "shasum": ""
  316. },
  317. "require": {
  318. "php": "^7.2.5 || ^8.0"
  319. },
  320. "require-dev": {
  321. "bamarni/composer-bin-plugin": "^1.8.2",
  322. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  323. },
  324. "type": "library",
  325. "extra": {
  326. "bamarni-bin": {
  327. "bin-links": true,
  328. "forward-command": false
  329. }
  330. },
  331. "autoload": {
  332. "psr-4": {
  333. "GuzzleHttp\\Promise\\": "src/"
  334. }
  335. },
  336. "notification-url": "https://packagist.org/downloads/",
  337. "license": [
  338. "MIT"
  339. ],
  340. "authors": [
  341. {
  342. "name": "Graham Campbell",
  343. "email": "hello@gjcampbell.co.uk",
  344. "homepage": "https://github.com/GrahamCampbell"
  345. },
  346. {
  347. "name": "Michael Dowling",
  348. "email": "mtdowling@gmail.com",
  349. "homepage": "https://github.com/mtdowling"
  350. },
  351. {
  352. "name": "Tobias Nyholm",
  353. "email": "tobias.nyholm@gmail.com",
  354. "homepage": "https://github.com/Nyholm"
  355. },
  356. {
  357. "name": "Tobias Schultze",
  358. "email": "webmaster@tubo-world.de",
  359. "homepage": "https://github.com/Tobion"
  360. }
  361. ],
  362. "description": "Guzzle promises library",
  363. "keywords": [
  364. "promise"
  365. ],
  366. "support": {
  367. "issues": "https://github.com/guzzle/promises/issues",
  368. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  369. },
  370. "funding": [
  371. {
  372. "url": "https://github.com/GrahamCampbell",
  373. "type": "github"
  374. },
  375. {
  376. "url": "https://github.com/Nyholm",
  377. "type": "github"
  378. },
  379. {
  380. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  381. "type": "tidelift"
  382. }
  383. ],
  384. "time": "2023-12-03T20:19:20+00:00"
  385. },
  386. {
  387. "name": "guzzlehttp/psr7",
  388. "version": "2.6.2",
  389. "source": {
  390. "type": "git",
  391. "url": "https://github.com/guzzle/psr7.git",
  392. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  393. },
  394. "dist": {
  395. "type": "zip",
  396. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  397. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  398. "shasum": ""
  399. },
  400. "require": {
  401. "php": "^7.2.5 || ^8.0",
  402. "psr/http-factory": "^1.0",
  403. "psr/http-message": "^1.1 || ^2.0",
  404. "ralouphie/getallheaders": "^3.0"
  405. },
  406. "provide": {
  407. "psr/http-factory-implementation": "1.0",
  408. "psr/http-message-implementation": "1.0"
  409. },
  410. "require-dev": {
  411. "bamarni/composer-bin-plugin": "^1.8.2",
  412. "http-interop/http-factory-tests": "^0.9",
  413. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  414. },
  415. "suggest": {
  416. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  417. },
  418. "type": "library",
  419. "extra": {
  420. "bamarni-bin": {
  421. "bin-links": true,
  422. "forward-command": false
  423. }
  424. },
  425. "autoload": {
  426. "psr-4": {
  427. "GuzzleHttp\\Psr7\\": "src/"
  428. }
  429. },
  430. "notification-url": "https://packagist.org/downloads/",
  431. "license": [
  432. "MIT"
  433. ],
  434. "authors": [
  435. {
  436. "name": "Graham Campbell",
  437. "email": "hello@gjcampbell.co.uk",
  438. "homepage": "https://github.com/GrahamCampbell"
  439. },
  440. {
  441. "name": "Michael Dowling",
  442. "email": "mtdowling@gmail.com",
  443. "homepage": "https://github.com/mtdowling"
  444. },
  445. {
  446. "name": "George Mponos",
  447. "email": "gmponos@gmail.com",
  448. "homepage": "https://github.com/gmponos"
  449. },
  450. {
  451. "name": "Tobias Nyholm",
  452. "email": "tobias.nyholm@gmail.com",
  453. "homepage": "https://github.com/Nyholm"
  454. },
  455. {
  456. "name": "Márk Sági-Kazár",
  457. "email": "mark.sagikazar@gmail.com",
  458. "homepage": "https://github.com/sagikazarmark"
  459. },
  460. {
  461. "name": "Tobias Schultze",
  462. "email": "webmaster@tubo-world.de",
  463. "homepage": "https://github.com/Tobion"
  464. },
  465. {
  466. "name": "Márk Sági-Kazár",
  467. "email": "mark.sagikazar@gmail.com",
  468. "homepage": "https://sagikazarmark.hu"
  469. }
  470. ],
  471. "description": "PSR-7 message implementation that also provides common utility methods",
  472. "keywords": [
  473. "http",
  474. "message",
  475. "psr-7",
  476. "request",
  477. "response",
  478. "stream",
  479. "uri",
  480. "url"
  481. ],
  482. "support": {
  483. "issues": "https://github.com/guzzle/psr7/issues",
  484. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  485. },
  486. "funding": [
  487. {
  488. "url": "https://github.com/GrahamCampbell",
  489. "type": "github"
  490. },
  491. {
  492. "url": "https://github.com/Nyholm",
  493. "type": "github"
  494. },
  495. {
  496. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  497. "type": "tidelift"
  498. }
  499. ],
  500. "time": "2023-12-03T20:05:35+00:00"
  501. },
  502. {
  503. "name": "jenssegers/date",
  504. "version": "v3.5.0",
  505. "source": {
  506. "type": "git",
  507. "url": "https://github.com/jenssegers/date.git",
  508. "reference": "58393b0544fc2525b3fcd02aa4c989857107e05a"
  509. },
  510. "dist": {
  511. "type": "zip",
  512. "url": "https://api.github.com/repos/jenssegers/date/zipball/58393b0544fc2525b3fcd02aa4c989857107e05a",
  513. "reference": "58393b0544fc2525b3fcd02aa4c989857107e05a",
  514. "shasum": ""
  515. },
  516. "require": {
  517. "nesbot/carbon": "^1.0|^2.0",
  518. "php": ">=5.6",
  519. "symfony/translation": "^2.7|^3.0|^4.0"
  520. },
  521. "require-dev": {
  522. "phpunit/phpunit": "^5.0|^6.0|^7.0",
  523. "satooshi/php-coveralls": "^2.0"
  524. },
  525. "type": "library",
  526. "extra": {
  527. "branch-alias": {
  528. "dev-master": "3.1-dev"
  529. },
  530. "laravel": {
  531. "providers": [
  532. "Jenssegers\\Date\\DateServiceProvider"
  533. ],
  534. "aliases": {
  535. "Date": "Jenssegers\\Date\\Date"
  536. }
  537. }
  538. },
  539. "autoload": {
  540. "psr-4": {
  541. "Jenssegers\\Date\\": "src/"
  542. }
  543. },
  544. "notification-url": "https://packagist.org/downloads/",
  545. "license": [
  546. "MIT"
  547. ],
  548. "authors": [
  549. {
  550. "name": "Jens Segers",
  551. "homepage": "https://jenssegers.com"
  552. }
  553. ],
  554. "description": "A date library to help you work with dates in different languages",
  555. "homepage": "https://github.com/jenssegers/date",
  556. "keywords": [
  557. "carbon",
  558. "date",
  559. "datetime",
  560. "i18n",
  561. "laravel",
  562. "time",
  563. "translation"
  564. ],
  565. "support": {
  566. "issues": "https://github.com/jenssegers/date/issues",
  567. "source": "https://github.com/jenssegers/date/tree/master"
  568. },
  569. "time": "2019-03-10T08:50:58+00:00"
  570. },
  571. {
  572. "name": "jpush/jpush",
  573. "version": "v3.6.8",
  574. "source": {
  575. "type": "git",
  576. "url": "https://github.com/jpush/jpush-api-php-client.git",
  577. "reference": "ebb191e8854a35c3fb7a6626028b3a23132cbe2c"
  578. },
  579. "dist": {
  580. "type": "zip",
  581. "url": "https://api.github.com/repos/jpush/jpush-api-php-client/zipball/ebb191e8854a35c3fb7a6626028b3a23132cbe2c",
  582. "reference": "ebb191e8854a35c3fb7a6626028b3a23132cbe2c",
  583. "shasum": ""
  584. },
  585. "require": {
  586. "ext-curl": "*",
  587. "php": ">=5.3.3"
  588. },
  589. "require-dev": {
  590. "phpunit/phpunit": "*"
  591. },
  592. "type": "library",
  593. "autoload": {
  594. "psr-4": {
  595. "JPush\\": "src/JPush/"
  596. }
  597. },
  598. "notification-url": "https://packagist.org/downloads/",
  599. "license": [
  600. "MIT"
  601. ],
  602. "authors": [
  603. {
  604. "name": "JPush",
  605. "email": "support@jpush.cn",
  606. "homepage": "https://www.jpush.cn/",
  607. "role": "Developer"
  608. }
  609. ],
  610. "description": "JPush API PHP Client",
  611. "homepage": "https://github.com/jpush/jpush-api-php-client",
  612. "support": {
  613. "issues": "https://github.com/jpush/jpush-api-php-client/issues",
  614. "source": "https://github.com/jpush/jpush-api-php-client/tree/v3.6.8"
  615. },
  616. "time": "2021-08-12T07:43:39+00:00"
  617. },
  618. {
  619. "name": "maennchen/zipstream-php",
  620. "version": "2.1.0",
  621. "source": {
  622. "type": "git",
  623. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  624. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  625. },
  626. "dist": {
  627. "type": "zip",
  628. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  629. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  630. "shasum": ""
  631. },
  632. "require": {
  633. "myclabs/php-enum": "^1.5",
  634. "php": ">= 7.1",
  635. "psr/http-message": "^1.0",
  636. "symfony/polyfill-mbstring": "^1.0"
  637. },
  638. "require-dev": {
  639. "ext-zip": "*",
  640. "guzzlehttp/guzzle": ">= 6.3",
  641. "mikey179/vfsstream": "^1.6",
  642. "phpunit/phpunit": ">= 7.5"
  643. },
  644. "type": "library",
  645. "autoload": {
  646. "psr-4": {
  647. "ZipStream\\": "src/"
  648. }
  649. },
  650. "notification-url": "https://packagist.org/downloads/",
  651. "license": [
  652. "MIT"
  653. ],
  654. "authors": [
  655. {
  656. "name": "Paul Duncan",
  657. "email": "pabs@pablotron.org"
  658. },
  659. {
  660. "name": "Jonatan Männchen",
  661. "email": "jonatan@maennchen.ch"
  662. },
  663. {
  664. "name": "Jesse Donat",
  665. "email": "donatj@gmail.com"
  666. },
  667. {
  668. "name": "András Kolesár",
  669. "email": "kolesar@kolesar.hu"
  670. }
  671. ],
  672. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  673. "keywords": [
  674. "stream",
  675. "zip"
  676. ],
  677. "support": {
  678. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  679. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.1.0"
  680. },
  681. "funding": [
  682. {
  683. "url": "https://github.com/maennchen",
  684. "type": "github"
  685. },
  686. {
  687. "url": "https://opencollective.com/zipstream",
  688. "type": "open_collective"
  689. }
  690. ],
  691. "time": "2020-05-30T13:11:16+00:00"
  692. },
  693. {
  694. "name": "markbaker/complex",
  695. "version": "3.0.2",
  696. "source": {
  697. "type": "git",
  698. "url": "https://github.com/MarkBaker/PHPComplex.git",
  699. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  700. },
  701. "dist": {
  702. "type": "zip",
  703. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  704. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  705. "shasum": ""
  706. },
  707. "require": {
  708. "php": "^7.2 || ^8.0"
  709. },
  710. "require-dev": {
  711. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  712. "phpcompatibility/php-compatibility": "^9.3",
  713. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  714. "squizlabs/php_codesniffer": "^3.7"
  715. },
  716. "type": "library",
  717. "autoload": {
  718. "psr-4": {
  719. "Complex\\": "classes/src/"
  720. }
  721. },
  722. "notification-url": "https://packagist.org/downloads/",
  723. "license": [
  724. "MIT"
  725. ],
  726. "authors": [
  727. {
  728. "name": "Mark Baker",
  729. "email": "mark@lange.demon.co.uk"
  730. }
  731. ],
  732. "description": "PHP Class for working with complex numbers",
  733. "homepage": "https://github.com/MarkBaker/PHPComplex",
  734. "keywords": [
  735. "complex",
  736. "mathematics"
  737. ],
  738. "support": {
  739. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  740. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  741. },
  742. "time": "2022-12-06T16:21:08+00:00"
  743. },
  744. {
  745. "name": "markbaker/matrix",
  746. "version": "3.0.1",
  747. "source": {
  748. "type": "git",
  749. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  750. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  751. },
  752. "dist": {
  753. "type": "zip",
  754. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  755. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  756. "shasum": ""
  757. },
  758. "require": {
  759. "php": "^7.1 || ^8.0"
  760. },
  761. "require-dev": {
  762. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  763. "phpcompatibility/php-compatibility": "^9.3",
  764. "phpdocumentor/phpdocumentor": "2.*",
  765. "phploc/phploc": "^4.0",
  766. "phpmd/phpmd": "2.*",
  767. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  768. "sebastian/phpcpd": "^4.0",
  769. "squizlabs/php_codesniffer": "^3.7"
  770. },
  771. "type": "library",
  772. "autoload": {
  773. "psr-4": {
  774. "Matrix\\": "classes/src/"
  775. }
  776. },
  777. "notification-url": "https://packagist.org/downloads/",
  778. "license": [
  779. "MIT"
  780. ],
  781. "authors": [
  782. {
  783. "name": "Mark Baker",
  784. "email": "mark@demon-angel.eu"
  785. }
  786. ],
  787. "description": "PHP Class for working with matrices",
  788. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  789. "keywords": [
  790. "mathematics",
  791. "matrix",
  792. "vector"
  793. ],
  794. "support": {
  795. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  796. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  797. },
  798. "time": "2022-12-02T22:17:43+00:00"
  799. },
  800. {
  801. "name": "monolog/monolog",
  802. "version": "2.9.2",
  803. "source": {
  804. "type": "git",
  805. "url": "https://github.com/Seldaek/monolog.git",
  806. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  807. },
  808. "dist": {
  809. "type": "zip",
  810. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  811. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  812. "shasum": ""
  813. },
  814. "require": {
  815. "php": ">=7.2",
  816. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  817. },
  818. "provide": {
  819. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  820. },
  821. "require-dev": {
  822. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  823. "doctrine/couchdb": "~1.0@dev",
  824. "elasticsearch/elasticsearch": "^7 || ^8",
  825. "ext-json": "*",
  826. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  827. "guzzlehttp/guzzle": "^7.4",
  828. "guzzlehttp/psr7": "^2.2",
  829. "mongodb/mongodb": "^1.8",
  830. "php-amqplib/php-amqplib": "~2.4 || ^3",
  831. "phpspec/prophecy": "^1.15",
  832. "phpstan/phpstan": "^0.12.91",
  833. "phpunit/phpunit": "^8.5.14",
  834. "predis/predis": "^1.1 || ^2.0",
  835. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  836. "ruflin/elastica": "^7",
  837. "swiftmailer/swiftmailer": "^5.3|^6.0",
  838. "symfony/mailer": "^5.4 || ^6",
  839. "symfony/mime": "^5.4 || ^6"
  840. },
  841. "suggest": {
  842. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  843. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  844. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  845. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  846. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  847. "ext-mbstring": "Allow to work properly with unicode symbols",
  848. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  849. "ext-openssl": "Required to send log messages using SSL",
  850. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  851. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  852. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  853. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  854. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  855. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  856. },
  857. "type": "library",
  858. "extra": {
  859. "branch-alias": {
  860. "dev-main": "2.x-dev"
  861. }
  862. },
  863. "autoload": {
  864. "psr-4": {
  865. "Monolog\\": "src/Monolog"
  866. }
  867. },
  868. "notification-url": "https://packagist.org/downloads/",
  869. "license": [
  870. "MIT"
  871. ],
  872. "authors": [
  873. {
  874. "name": "Jordi Boggiano",
  875. "email": "j.boggiano@seld.be",
  876. "homepage": "https://seld.be"
  877. }
  878. ],
  879. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  880. "homepage": "https://github.com/Seldaek/monolog",
  881. "keywords": [
  882. "log",
  883. "logging",
  884. "psr-3"
  885. ],
  886. "support": {
  887. "issues": "https://github.com/Seldaek/monolog/issues",
  888. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  889. },
  890. "funding": [
  891. {
  892. "url": "https://github.com/Seldaek",
  893. "type": "github"
  894. },
  895. {
  896. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  897. "type": "tidelift"
  898. }
  899. ],
  900. "time": "2023-10-27T15:25:26+00:00"
  901. },
  902. {
  903. "name": "mtdowling/cron-expression",
  904. "version": "v1.2.3",
  905. "source": {
  906. "type": "git",
  907. "url": "https://github.com/mtdowling/cron-expression.git",
  908. "reference": "9be552eebcc1ceec9776378f7dcc085246cacca6"
  909. },
  910. "dist": {
  911. "type": "zip",
  912. "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9be552eebcc1ceec9776378f7dcc085246cacca6",
  913. "reference": "9be552eebcc1ceec9776378f7dcc085246cacca6",
  914. "shasum": ""
  915. },
  916. "require": {
  917. "php": ">=5.3.2"
  918. },
  919. "require-dev": {
  920. "phpunit/phpunit": "~4.0|~5.0"
  921. },
  922. "type": "library",
  923. "autoload": {
  924. "psr-4": {
  925. "Cron\\": "src/Cron/"
  926. }
  927. },
  928. "notification-url": "https://packagist.org/downloads/",
  929. "license": [
  930. "MIT"
  931. ],
  932. "authors": [
  933. {
  934. "name": "Michael Dowling",
  935. "email": "mtdowling@gmail.com",
  936. "homepage": "https://github.com/mtdowling"
  937. }
  938. ],
  939. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  940. "keywords": [
  941. "cron",
  942. "schedule"
  943. ],
  944. "support": {
  945. "issues": "https://github.com/mtdowling/cron-expression/issues",
  946. "source": "https://github.com/mtdowling/cron-expression/tree/v1.2.3"
  947. },
  948. "abandoned": "dragonmantank/cron-expression",
  949. "time": "2019-12-28T04:23:06+00:00"
  950. },
  951. {
  952. "name": "myclabs/php-enum",
  953. "version": "1.7.7",
  954. "source": {
  955. "type": "git",
  956. "url": "https://github.com/myclabs/php-enum.git",
  957. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7"
  958. },
  959. "dist": {
  960. "type": "zip",
  961. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/d178027d1e679832db9f38248fcc7200647dc2b7",
  962. "reference": "d178027d1e679832db9f38248fcc7200647dc2b7",
  963. "shasum": ""
  964. },
  965. "require": {
  966. "ext-json": "*",
  967. "php": ">=7.1"
  968. },
  969. "require-dev": {
  970. "phpunit/phpunit": "^7",
  971. "squizlabs/php_codesniffer": "1.*",
  972. "vimeo/psalm": "^3.8"
  973. },
  974. "type": "library",
  975. "autoload": {
  976. "psr-4": {
  977. "MyCLabs\\Enum\\": "src/"
  978. }
  979. },
  980. "notification-url": "https://packagist.org/downloads/",
  981. "license": [
  982. "MIT"
  983. ],
  984. "authors": [
  985. {
  986. "name": "PHP Enum contributors",
  987. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  988. }
  989. ],
  990. "description": "PHP Enum implementation",
  991. "homepage": "http://github.com/myclabs/php-enum",
  992. "keywords": [
  993. "enum"
  994. ],
  995. "support": {
  996. "issues": "https://github.com/myclabs/php-enum/issues",
  997. "source": "https://github.com/myclabs/php-enum/tree/1.7.7"
  998. },
  999. "funding": [
  1000. {
  1001. "url": "https://github.com/mnapoli",
  1002. "type": "github"
  1003. },
  1004. {
  1005. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  1006. "type": "tidelift"
  1007. }
  1008. ],
  1009. "time": "2020-11-14T18:14:52+00:00"
  1010. },
  1011. {
  1012. "name": "nesbot/carbon",
  1013. "version": "2.72.3",
  1014. "source": {
  1015. "type": "git",
  1016. "url": "https://github.com/briannesbitt/Carbon.git",
  1017. "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83"
  1018. },
  1019. "dist": {
  1020. "type": "zip",
  1021. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/0c6fd108360c562f6e4fd1dedb8233b423e91c83",
  1022. "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83",
  1023. "shasum": ""
  1024. },
  1025. "require": {
  1026. "carbonphp/carbon-doctrine-types": "*",
  1027. "ext-json": "*",
  1028. "php": "^7.1.8 || ^8.0",
  1029. "psr/clock": "^1.0",
  1030. "symfony/polyfill-mbstring": "^1.0",
  1031. "symfony/polyfill-php80": "^1.16",
  1032. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1033. },
  1034. "provide": {
  1035. "psr/clock-implementation": "1.0"
  1036. },
  1037. "require-dev": {
  1038. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  1039. "doctrine/orm": "^2.7 || ^3.0",
  1040. "friendsofphp/php-cs-fixer": "^3.0",
  1041. "kylekatarnls/multi-tester": "^2.0",
  1042. "ondrejmirtes/better-reflection": "*",
  1043. "phpmd/phpmd": "^2.9",
  1044. "phpstan/extension-installer": "^1.0",
  1045. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  1046. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  1047. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  1048. "squizlabs/php_codesniffer": "^3.4"
  1049. },
  1050. "bin": [
  1051. "bin/carbon"
  1052. ],
  1053. "type": "library",
  1054. "extra": {
  1055. "branch-alias": {
  1056. "dev-3.x": "3.x-dev",
  1057. "dev-master": "2.x-dev"
  1058. },
  1059. "laravel": {
  1060. "providers": [
  1061. "Carbon\\Laravel\\ServiceProvider"
  1062. ]
  1063. },
  1064. "phpstan": {
  1065. "includes": [
  1066. "extension.neon"
  1067. ]
  1068. }
  1069. },
  1070. "autoload": {
  1071. "psr-4": {
  1072. "Carbon\\": "src/Carbon/"
  1073. }
  1074. },
  1075. "notification-url": "https://packagist.org/downloads/",
  1076. "license": [
  1077. "MIT"
  1078. ],
  1079. "authors": [
  1080. {
  1081. "name": "Brian Nesbitt",
  1082. "email": "brian@nesbot.com",
  1083. "homepage": "https://markido.com"
  1084. },
  1085. {
  1086. "name": "kylekatarnls",
  1087. "homepage": "https://github.com/kylekatarnls"
  1088. }
  1089. ],
  1090. "description": "An API extension for DateTime that supports 281 different languages.",
  1091. "homepage": "https://carbon.nesbot.com",
  1092. "keywords": [
  1093. "date",
  1094. "datetime",
  1095. "time"
  1096. ],
  1097. "support": {
  1098. "docs": "https://carbon.nesbot.com/docs",
  1099. "issues": "https://github.com/briannesbitt/Carbon/issues",
  1100. "source": "https://github.com/briannesbitt/Carbon"
  1101. },
  1102. "funding": [
  1103. {
  1104. "url": "https://github.com/sponsors/kylekatarnls",
  1105. "type": "github"
  1106. },
  1107. {
  1108. "url": "https://opencollective.com/Carbon#sponsor",
  1109. "type": "opencollective"
  1110. },
  1111. {
  1112. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  1113. "type": "tidelift"
  1114. }
  1115. ],
  1116. "time": "2024-01-25T10:35:09+00:00"
  1117. },
  1118. {
  1119. "name": "overtrue/pinyin",
  1120. "version": "4.0.0",
  1121. "source": {
  1122. "type": "git",
  1123. "url": "https://github.com/overtrue/pinyin.git",
  1124. "reference": "8ca475c352ba3ee096bb5f7668fc4247a96af9f9"
  1125. },
  1126. "dist": {
  1127. "type": "zip",
  1128. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/8ca475c352ba3ee096bb5f7668fc4247a96af9f9",
  1129. "reference": "8ca475c352ba3ee096bb5f7668fc4247a96af9f9",
  1130. "shasum": ""
  1131. },
  1132. "require": {
  1133. "php": ">=5.3"
  1134. },
  1135. "require-dev": {
  1136. "phpunit/phpunit": "~4.8"
  1137. },
  1138. "type": "library",
  1139. "autoload": {
  1140. "psr-4": {
  1141. "Overtrue\\Pinyin\\": "src/"
  1142. }
  1143. },
  1144. "notification-url": "https://packagist.org/downloads/",
  1145. "license": [
  1146. "MIT"
  1147. ],
  1148. "authors": [
  1149. {
  1150. "name": "Carlos",
  1151. "homepage": "http://github.com/overtrue"
  1152. }
  1153. ],
  1154. "description": "Chinese to pinyin translator.",
  1155. "homepage": "https://github.com/overtrue/pinyin",
  1156. "keywords": [
  1157. "Chinese",
  1158. "Pinyin",
  1159. "cn2pinyin"
  1160. ],
  1161. "support": {
  1162. "issues": "https://github.com/overtrue/pinyin/issues",
  1163. "source": "https://github.com/overtrue/pinyin/tree/master"
  1164. },
  1165. "time": "2018-09-20T09:42:45+00:00"
  1166. },
  1167. {
  1168. "name": "overtrue/socialite",
  1169. "version": "2.0.24",
  1170. "source": {
  1171. "type": "git",
  1172. "url": "https://github.com/overtrue/socialite.git",
  1173. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  1174. },
  1175. "dist": {
  1176. "type": "zip",
  1177. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  1178. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  1179. "shasum": ""
  1180. },
  1181. "require": {
  1182. "ext-json": "*",
  1183. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  1184. "php": ">=5.6",
  1185. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  1186. },
  1187. "require-dev": {
  1188. "mockery/mockery": "~1.2",
  1189. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  1190. },
  1191. "type": "library",
  1192. "autoload": {
  1193. "psr-4": {
  1194. "Overtrue\\Socialite\\": "src/"
  1195. }
  1196. },
  1197. "notification-url": "https://packagist.org/downloads/",
  1198. "license": [
  1199. "MIT"
  1200. ],
  1201. "authors": [
  1202. {
  1203. "name": "overtrue",
  1204. "email": "anzhengchao@gmail.com"
  1205. }
  1206. ],
  1207. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  1208. "keywords": [
  1209. "login",
  1210. "oauth",
  1211. "qq",
  1212. "social",
  1213. "wechat",
  1214. "weibo"
  1215. ],
  1216. "support": {
  1217. "issues": "https://github.com/overtrue/socialite/issues",
  1218. "source": "https://github.com/overtrue/socialite/tree/2.0.24"
  1219. },
  1220. "funding": [
  1221. {
  1222. "url": "https://www.patreon.com/overtrue",
  1223. "type": "patreon"
  1224. }
  1225. ],
  1226. "time": "2021-05-13T16:04:48+00:00"
  1227. },
  1228. {
  1229. "name": "overtrue/wechat",
  1230. "version": "4.9.0",
  1231. "source": {
  1232. "type": "git",
  1233. "url": "https://github.com/w7corp/easywechat.git",
  1234. "reference": "92791f5d957269c633b9aa175f842f6006f945b1"
  1235. },
  1236. "dist": {
  1237. "type": "zip",
  1238. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/92791f5d957269c633b9aa175f842f6006f945b1",
  1239. "reference": "92791f5d957269c633b9aa175f842f6006f945b1",
  1240. "shasum": ""
  1241. },
  1242. "require": {
  1243. "easywechat-composer/easywechat-composer": "^1.1",
  1244. "ext-fileinfo": "*",
  1245. "ext-openssl": "*",
  1246. "ext-simplexml": "*",
  1247. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  1248. "monolog/monolog": "^1.22 || ^2.0",
  1249. "overtrue/socialite": "~2.0",
  1250. "php": ">=7.2",
  1251. "pimple/pimple": "^3.0",
  1252. "psr/simple-cache": "^1.0",
  1253. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  1254. "symfony/event-dispatcher": "^4.3 || ^5.0",
  1255. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  1256. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  1257. },
  1258. "require-dev": {
  1259. "friendsofphp/php-cs-fixer": "^2.15",
  1260. "mikey179/vfsstream": "^1.6",
  1261. "mockery/mockery": "^1.2.3",
  1262. "phpstan/phpstan": "^0.12.0",
  1263. "phpunit/phpunit": "^7.5"
  1264. },
  1265. "type": "library",
  1266. "autoload": {
  1267. "files": [
  1268. "src/Kernel/Support/Helpers.php",
  1269. "src/Kernel/Helpers.php"
  1270. ],
  1271. "psr-4": {
  1272. "EasyWeChat\\": "src/"
  1273. }
  1274. },
  1275. "notification-url": "https://packagist.org/downloads/",
  1276. "license": [
  1277. "MIT"
  1278. ],
  1279. "authors": [
  1280. {
  1281. "name": "overtrue",
  1282. "email": "anzhengchao@gmail.com"
  1283. }
  1284. ],
  1285. "description": "微信SDK",
  1286. "keywords": [
  1287. "easywechat",
  1288. "sdk",
  1289. "wechat",
  1290. "weixin",
  1291. "weixin-sdk"
  1292. ],
  1293. "support": {
  1294. "issues": "https://github.com/w7corp/easywechat/issues",
  1295. "source": "https://github.com/w7corp/easywechat/tree/4.9.0"
  1296. },
  1297. "funding": [
  1298. {
  1299. "url": "https://github.com/overtrue",
  1300. "type": "github"
  1301. }
  1302. ],
  1303. "abandoned": "w7corp/easywechat",
  1304. "time": "2023-04-28T03:30:34+00:00"
  1305. },
  1306. {
  1307. "name": "pclzip/pclzip",
  1308. "version": "2.8.2",
  1309. "source": {
  1310. "type": "git",
  1311. "url": "https://github.com/ivanlanin/pclzip.git",
  1312. "reference": "19dd1de9d3f5fc4d7d70175b4c344dee329f45fd"
  1313. },
  1314. "dist": {
  1315. "type": "zip",
  1316. "url": "https://api.github.com/repos/ivanlanin/pclzip/zipball/19dd1de9d3f5fc4d7d70175b4c344dee329f45fd",
  1317. "reference": "19dd1de9d3f5fc4d7d70175b4c344dee329f45fd",
  1318. "shasum": ""
  1319. },
  1320. "type": "library",
  1321. "autoload": {
  1322. "classmap": [
  1323. "pclzip.lib.php"
  1324. ]
  1325. },
  1326. "notification-url": "https://packagist.org/downloads/",
  1327. "license": [
  1328. "LGPL-2.1"
  1329. ],
  1330. "authors": [
  1331. {
  1332. "name": "Vincent Blavet"
  1333. }
  1334. ],
  1335. "description": "A PHP library that offers compression and extraction functions for Zip formatted archives",
  1336. "homepage": "http://www.phpconcept.net/pclzip",
  1337. "keywords": [
  1338. "php",
  1339. "zip"
  1340. ],
  1341. "support": {
  1342. "issues": "https://github.com/ivanlanin/pclzip/issues",
  1343. "source": "https://github.com/ivanlanin/pclzip/tree/master"
  1344. },
  1345. "time": "2014-06-05T11:42:24+00:00"
  1346. },
  1347. {
  1348. "name": "phpoffice/common",
  1349. "version": "0.2.9",
  1350. "source": {
  1351. "type": "git",
  1352. "url": "https://github.com/PHPOffice/Common.git",
  1353. "reference": "edb5d32b1e3400a35a5c91e2539ed6f6ce925e4d"
  1354. },
  1355. "dist": {
  1356. "type": "zip",
  1357. "url": "https://api.github.com/repos/PHPOffice/Common/zipball/edb5d32b1e3400a35a5c91e2539ed6f6ce925e4d",
  1358. "reference": "edb5d32b1e3400a35a5c91e2539ed6f6ce925e4d",
  1359. "shasum": ""
  1360. },
  1361. "require": {
  1362. "pclzip/pclzip": "^2.8",
  1363. "php": ">=5.3.0"
  1364. },
  1365. "require-dev": {
  1366. "phpdocumentor/phpdocumentor": "2.*",
  1367. "phploc/phploc": "2.*",
  1368. "phpmd/phpmd": "2.*",
  1369. "phpunit/phpunit": "^4.8.36 || ^7.0",
  1370. "sebastian/phpcpd": "2.*",
  1371. "squizlabs/php_codesniffer": "2.*"
  1372. },
  1373. "type": "library",
  1374. "autoload": {
  1375. "psr-4": {
  1376. "PhpOffice\\Common\\": "src/Common/"
  1377. }
  1378. },
  1379. "notification-url": "https://packagist.org/downloads/",
  1380. "license": [
  1381. "LGPL"
  1382. ],
  1383. "authors": [
  1384. {
  1385. "name": "Mark Baker"
  1386. },
  1387. {
  1388. "name": "Franck Lefevre",
  1389. "homepage": "http://rootslabs.net"
  1390. }
  1391. ],
  1392. "description": "PHPOffice Common",
  1393. "homepage": "http://phpoffice.github.io",
  1394. "keywords": [
  1395. "common",
  1396. "component",
  1397. "office",
  1398. "php"
  1399. ],
  1400. "support": {
  1401. "issues": "https://github.com/PHPOffice/Common/issues",
  1402. "source": "https://github.com/PHPOffice/Common/tree/master"
  1403. },
  1404. "time": "2018-07-13T14:12:34+00:00"
  1405. },
  1406. {
  1407. "name": "phpoffice/phpspreadsheet",
  1408. "version": "1.19.0",
  1409. "source": {
  1410. "type": "git",
  1411. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  1412. "reference": "a9ab55bfae02eecffb3df669a2e19ba0e2f04bbf"
  1413. },
  1414. "dist": {
  1415. "type": "zip",
  1416. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a9ab55bfae02eecffb3df669a2e19ba0e2f04bbf",
  1417. "reference": "a9ab55bfae02eecffb3df669a2e19ba0e2f04bbf",
  1418. "shasum": ""
  1419. },
  1420. "require": {
  1421. "ext-ctype": "*",
  1422. "ext-dom": "*",
  1423. "ext-fileinfo": "*",
  1424. "ext-gd": "*",
  1425. "ext-iconv": "*",
  1426. "ext-libxml": "*",
  1427. "ext-mbstring": "*",
  1428. "ext-simplexml": "*",
  1429. "ext-xml": "*",
  1430. "ext-xmlreader": "*",
  1431. "ext-xmlwriter": "*",
  1432. "ext-zip": "*",
  1433. "ext-zlib": "*",
  1434. "ezyang/htmlpurifier": "^4.13",
  1435. "maennchen/zipstream-php": "^2.1",
  1436. "markbaker/complex": "^3.0",
  1437. "markbaker/matrix": "^3.0",
  1438. "php": "^7.2 || ^8.0",
  1439. "psr/http-client": "^1.0",
  1440. "psr/http-factory": "^1.0",
  1441. "psr/simple-cache": "^1.0"
  1442. },
  1443. "require-dev": {
  1444. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1445. "dompdf/dompdf": "^1.0",
  1446. "friendsofphp/php-cs-fixer": "^2.18",
  1447. "jpgraph/jpgraph": "^4.0",
  1448. "mpdf/mpdf": "^8.0",
  1449. "phpcompatibility/php-compatibility": "^9.3",
  1450. "phpstan/phpstan": "^0.12.82",
  1451. "phpstan/phpstan-phpunit": "^0.12.18",
  1452. "phpunit/phpunit": "^8.5",
  1453. "squizlabs/php_codesniffer": "^3.5",
  1454. "tecnickcom/tcpdf": "^6.3"
  1455. },
  1456. "suggest": {
  1457. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  1458. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  1459. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  1460. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  1461. },
  1462. "type": "library",
  1463. "autoload": {
  1464. "psr-4": {
  1465. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  1466. }
  1467. },
  1468. "notification-url": "https://packagist.org/downloads/",
  1469. "license": [
  1470. "MIT"
  1471. ],
  1472. "authors": [
  1473. {
  1474. "name": "Maarten Balliauw",
  1475. "homepage": "https://blog.maartenballiauw.be"
  1476. },
  1477. {
  1478. "name": "Mark Baker",
  1479. "homepage": "https://markbakeruk.net"
  1480. },
  1481. {
  1482. "name": "Franck Lefevre",
  1483. "homepage": "https://rootslabs.net"
  1484. },
  1485. {
  1486. "name": "Erik Tilt"
  1487. },
  1488. {
  1489. "name": "Adrien Crivelli"
  1490. }
  1491. ],
  1492. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1493. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  1494. "keywords": [
  1495. "OpenXML",
  1496. "excel",
  1497. "gnumeric",
  1498. "ods",
  1499. "php",
  1500. "spreadsheet",
  1501. "xls",
  1502. "xlsx"
  1503. ],
  1504. "support": {
  1505. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  1506. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.19.0"
  1507. },
  1508. "time": "2021-10-31T15:09:20+00:00"
  1509. },
  1510. {
  1511. "name": "phpoffice/phpword",
  1512. "version": "0.17.0",
  1513. "source": {
  1514. "type": "git",
  1515. "url": "https://github.com/PHPOffice/PHPWord.git",
  1516. "reference": "b8346af548d399acd9e30fc76ab0c55c2fec03a5"
  1517. },
  1518. "dist": {
  1519. "type": "zip",
  1520. "url": "https://api.github.com/repos/PHPOffice/PHPWord/zipball/b8346af548d399acd9e30fc76ab0c55c2fec03a5",
  1521. "reference": "b8346af548d399acd9e30fc76ab0c55c2fec03a5",
  1522. "shasum": ""
  1523. },
  1524. "require": {
  1525. "ext-xml": "*",
  1526. "php": "^5.3.3 || ^7.0",
  1527. "phpoffice/common": "^0.2.9",
  1528. "zendframework/zend-escaper": "^2.2"
  1529. },
  1530. "require-dev": {
  1531. "dompdf/dompdf": "0.8.*",
  1532. "ext-gd": "*",
  1533. "ext-zip": "*",
  1534. "friendsofphp/php-cs-fixer": "^2.2",
  1535. "mpdf/mpdf": "5.7.4 || 6.* || 7.*",
  1536. "php-coveralls/php-coveralls": "1.1.0 || ^2.0",
  1537. "phploc/phploc": "2.* || 3.* || 4.*",
  1538. "phpmd/phpmd": "2.*",
  1539. "phpunit/phpunit": "^4.8.36 || ^7.0",
  1540. "squizlabs/php_codesniffer": "^2.9",
  1541. "tecnickcom/tcpdf": "6.*"
  1542. },
  1543. "suggest": {
  1544. "dompdf/dompdf": "Allows writing PDF",
  1545. "ext-gd2": "Allows adding images",
  1546. "ext-xmlwriter": "Allows writing OOXML and ODF",
  1547. "ext-xsl": "Allows applying XSL style sheet to headers, to main document part, and to footers of an OOXML template",
  1548. "ext-zip": "Allows writing OOXML and ODF"
  1549. },
  1550. "type": "library",
  1551. "extra": {
  1552. "branch-alias": {
  1553. "dev-develop": "0.18-dev"
  1554. }
  1555. },
  1556. "autoload": {
  1557. "psr-4": {
  1558. "PhpOffice\\PhpWord\\": "src/PhpWord"
  1559. }
  1560. },
  1561. "notification-url": "https://packagist.org/downloads/",
  1562. "license": [
  1563. "LGPL-3.0"
  1564. ],
  1565. "authors": [
  1566. {
  1567. "name": "Mark Baker"
  1568. },
  1569. {
  1570. "name": "Gabriel Bull",
  1571. "email": "me@gabrielbull.com",
  1572. "homepage": "http://gabrielbull.com/"
  1573. },
  1574. {
  1575. "name": "Franck Lefevre",
  1576. "homepage": "https://rootslabs.net/blog/"
  1577. },
  1578. {
  1579. "name": "Ivan Lanin",
  1580. "homepage": "http://ivan.lanin.org"
  1581. },
  1582. {
  1583. "name": "Roman Syroeshko",
  1584. "homepage": "http://ru.linkedin.com/pub/roman-syroeshko/34/a53/994/"
  1585. },
  1586. {
  1587. "name": "Antoine de Troostembergh"
  1588. }
  1589. ],
  1590. "description": "PHPWord - A pure PHP library for reading and writing word processing documents (OOXML, ODF, RTF, HTML, PDF)",
  1591. "homepage": "http://phpoffice.github.io",
  1592. "keywords": [
  1593. "ISO IEC 29500",
  1594. "OOXML",
  1595. "Office Open XML",
  1596. "OpenDocument",
  1597. "OpenXML",
  1598. "PhpOffice",
  1599. "PhpWord",
  1600. "Rich Text Format",
  1601. "WordprocessingML",
  1602. "doc",
  1603. "docx",
  1604. "html",
  1605. "odf",
  1606. "odt",
  1607. "office",
  1608. "pdf",
  1609. "php",
  1610. "reader",
  1611. "rtf",
  1612. "template",
  1613. "template processor",
  1614. "word",
  1615. "writer"
  1616. ],
  1617. "support": {
  1618. "issues": "https://github.com/PHPOffice/PHPWord/issues",
  1619. "source": "https://github.com/PHPOffice/PHPWord/tree/develop"
  1620. },
  1621. "time": "2019-10-01T20:43:33+00:00"
  1622. },
  1623. {
  1624. "name": "pimple/pimple",
  1625. "version": "v3.5.0",
  1626. "source": {
  1627. "type": "git",
  1628. "url": "https://github.com/silexphp/Pimple.git",
  1629. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  1630. },
  1631. "dist": {
  1632. "type": "zip",
  1633. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  1634. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  1635. "shasum": ""
  1636. },
  1637. "require": {
  1638. "php": ">=7.2.5",
  1639. "psr/container": "^1.1 || ^2.0"
  1640. },
  1641. "require-dev": {
  1642. "symfony/phpunit-bridge": "^5.4@dev"
  1643. },
  1644. "type": "library",
  1645. "extra": {
  1646. "branch-alias": {
  1647. "dev-master": "3.4.x-dev"
  1648. }
  1649. },
  1650. "autoload": {
  1651. "psr-0": {
  1652. "Pimple": "src/"
  1653. }
  1654. },
  1655. "notification-url": "https://packagist.org/downloads/",
  1656. "license": [
  1657. "MIT"
  1658. ],
  1659. "authors": [
  1660. {
  1661. "name": "Fabien Potencier",
  1662. "email": "fabien@symfony.com"
  1663. }
  1664. ],
  1665. "description": "Pimple, a simple Dependency Injection Container",
  1666. "homepage": "https://pimple.symfony.com",
  1667. "keywords": [
  1668. "container",
  1669. "dependency injection"
  1670. ],
  1671. "support": {
  1672. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  1673. },
  1674. "time": "2021-10-28T11:13:42+00:00"
  1675. },
  1676. {
  1677. "name": "psr/cache",
  1678. "version": "1.0.1",
  1679. "source": {
  1680. "type": "git",
  1681. "url": "https://github.com/php-fig/cache.git",
  1682. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1683. },
  1684. "dist": {
  1685. "type": "zip",
  1686. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1687. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1688. "shasum": ""
  1689. },
  1690. "require": {
  1691. "php": ">=5.3.0"
  1692. },
  1693. "type": "library",
  1694. "extra": {
  1695. "branch-alias": {
  1696. "dev-master": "1.0.x-dev"
  1697. }
  1698. },
  1699. "autoload": {
  1700. "psr-4": {
  1701. "Psr\\Cache\\": "src/"
  1702. }
  1703. },
  1704. "notification-url": "https://packagist.org/downloads/",
  1705. "license": [
  1706. "MIT"
  1707. ],
  1708. "authors": [
  1709. {
  1710. "name": "PHP-FIG",
  1711. "homepage": "http://www.php-fig.org/"
  1712. }
  1713. ],
  1714. "description": "Common interface for caching libraries",
  1715. "keywords": [
  1716. "cache",
  1717. "psr",
  1718. "psr-6"
  1719. ],
  1720. "support": {
  1721. "source": "https://github.com/php-fig/cache/tree/master"
  1722. },
  1723. "time": "2016-08-06T20:24:11+00:00"
  1724. },
  1725. {
  1726. "name": "psr/clock",
  1727. "version": "1.0.0",
  1728. "source": {
  1729. "type": "git",
  1730. "url": "https://github.com/php-fig/clock.git",
  1731. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  1732. },
  1733. "dist": {
  1734. "type": "zip",
  1735. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1736. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1737. "shasum": ""
  1738. },
  1739. "require": {
  1740. "php": "^7.0 || ^8.0"
  1741. },
  1742. "type": "library",
  1743. "autoload": {
  1744. "psr-4": {
  1745. "Psr\\Clock\\": "src/"
  1746. }
  1747. },
  1748. "notification-url": "https://packagist.org/downloads/",
  1749. "license": [
  1750. "MIT"
  1751. ],
  1752. "authors": [
  1753. {
  1754. "name": "PHP-FIG",
  1755. "homepage": "https://www.php-fig.org/"
  1756. }
  1757. ],
  1758. "description": "Common interface for reading the clock.",
  1759. "homepage": "https://github.com/php-fig/clock",
  1760. "keywords": [
  1761. "clock",
  1762. "now",
  1763. "psr",
  1764. "psr-20",
  1765. "time"
  1766. ],
  1767. "support": {
  1768. "issues": "https://github.com/php-fig/clock/issues",
  1769. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  1770. },
  1771. "time": "2022-11-25T14:36:26+00:00"
  1772. },
  1773. {
  1774. "name": "psr/container",
  1775. "version": "2.0.1",
  1776. "source": {
  1777. "type": "git",
  1778. "url": "https://github.com/php-fig/container.git",
  1779. "reference": "2ae37329ee82f91efadc282cc2d527fd6065a5ef"
  1780. },
  1781. "dist": {
  1782. "type": "zip",
  1783. "url": "https://api.github.com/repos/php-fig/container/zipball/2ae37329ee82f91efadc282cc2d527fd6065a5ef",
  1784. "reference": "2ae37329ee82f91efadc282cc2d527fd6065a5ef",
  1785. "shasum": ""
  1786. },
  1787. "require": {
  1788. "php": ">=7.2.0"
  1789. },
  1790. "type": "library",
  1791. "extra": {
  1792. "branch-alias": {
  1793. "dev-master": "2.0.x-dev"
  1794. }
  1795. },
  1796. "autoload": {
  1797. "psr-4": {
  1798. "Psr\\Container\\": "src/"
  1799. }
  1800. },
  1801. "notification-url": "https://packagist.org/downloads/",
  1802. "license": [
  1803. "MIT"
  1804. ],
  1805. "authors": [
  1806. {
  1807. "name": "PHP-FIG",
  1808. "homepage": "https://www.php-fig.org/"
  1809. }
  1810. ],
  1811. "description": "Common Container Interface (PHP FIG PSR-11)",
  1812. "homepage": "https://github.com/php-fig/container",
  1813. "keywords": [
  1814. "PSR-11",
  1815. "container",
  1816. "container-interface",
  1817. "container-interop",
  1818. "psr"
  1819. ],
  1820. "support": {
  1821. "issues": "https://github.com/php-fig/container/issues",
  1822. "source": "https://github.com/php-fig/container/tree/2.0.1"
  1823. },
  1824. "time": "2021-03-24T13:40:57+00:00"
  1825. },
  1826. {
  1827. "name": "psr/event-dispatcher",
  1828. "version": "1.0.0",
  1829. "source": {
  1830. "type": "git",
  1831. "url": "https://github.com/php-fig/event-dispatcher.git",
  1832. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1833. },
  1834. "dist": {
  1835. "type": "zip",
  1836. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1837. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1838. "shasum": ""
  1839. },
  1840. "require": {
  1841. "php": ">=7.2.0"
  1842. },
  1843. "type": "library",
  1844. "extra": {
  1845. "branch-alias": {
  1846. "dev-master": "1.0.x-dev"
  1847. }
  1848. },
  1849. "autoload": {
  1850. "psr-4": {
  1851. "Psr\\EventDispatcher\\": "src/"
  1852. }
  1853. },
  1854. "notification-url": "https://packagist.org/downloads/",
  1855. "license": [
  1856. "MIT"
  1857. ],
  1858. "authors": [
  1859. {
  1860. "name": "PHP-FIG",
  1861. "homepage": "http://www.php-fig.org/"
  1862. }
  1863. ],
  1864. "description": "Standard interfaces for event handling.",
  1865. "keywords": [
  1866. "events",
  1867. "psr",
  1868. "psr-14"
  1869. ],
  1870. "support": {
  1871. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1872. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1873. },
  1874. "time": "2019-01-08T18:20:26+00:00"
  1875. },
  1876. {
  1877. "name": "psr/http-client",
  1878. "version": "1.0.3",
  1879. "source": {
  1880. "type": "git",
  1881. "url": "https://github.com/php-fig/http-client.git",
  1882. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  1883. },
  1884. "dist": {
  1885. "type": "zip",
  1886. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  1887. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  1888. "shasum": ""
  1889. },
  1890. "require": {
  1891. "php": "^7.0 || ^8.0",
  1892. "psr/http-message": "^1.0 || ^2.0"
  1893. },
  1894. "type": "library",
  1895. "extra": {
  1896. "branch-alias": {
  1897. "dev-master": "1.0.x-dev"
  1898. }
  1899. },
  1900. "autoload": {
  1901. "psr-4": {
  1902. "Psr\\Http\\Client\\": "src/"
  1903. }
  1904. },
  1905. "notification-url": "https://packagist.org/downloads/",
  1906. "license": [
  1907. "MIT"
  1908. ],
  1909. "authors": [
  1910. {
  1911. "name": "PHP-FIG",
  1912. "homepage": "https://www.php-fig.org/"
  1913. }
  1914. ],
  1915. "description": "Common interface for HTTP clients",
  1916. "homepage": "https://github.com/php-fig/http-client",
  1917. "keywords": [
  1918. "http",
  1919. "http-client",
  1920. "psr",
  1921. "psr-18"
  1922. ],
  1923. "support": {
  1924. "source": "https://github.com/php-fig/http-client"
  1925. },
  1926. "time": "2023-09-23T14:17:50+00:00"
  1927. },
  1928. {
  1929. "name": "psr/http-factory",
  1930. "version": "1.0.2",
  1931. "source": {
  1932. "type": "git",
  1933. "url": "https://github.com/php-fig/http-factory.git",
  1934. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  1935. },
  1936. "dist": {
  1937. "type": "zip",
  1938. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  1939. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  1940. "shasum": ""
  1941. },
  1942. "require": {
  1943. "php": ">=7.0.0",
  1944. "psr/http-message": "^1.0 || ^2.0"
  1945. },
  1946. "type": "library",
  1947. "extra": {
  1948. "branch-alias": {
  1949. "dev-master": "1.0.x-dev"
  1950. }
  1951. },
  1952. "autoload": {
  1953. "psr-4": {
  1954. "Psr\\Http\\Message\\": "src/"
  1955. }
  1956. },
  1957. "notification-url": "https://packagist.org/downloads/",
  1958. "license": [
  1959. "MIT"
  1960. ],
  1961. "authors": [
  1962. {
  1963. "name": "PHP-FIG",
  1964. "homepage": "https://www.php-fig.org/"
  1965. }
  1966. ],
  1967. "description": "Common interfaces for PSR-7 HTTP message factories",
  1968. "keywords": [
  1969. "factory",
  1970. "http",
  1971. "message",
  1972. "psr",
  1973. "psr-17",
  1974. "psr-7",
  1975. "request",
  1976. "response"
  1977. ],
  1978. "support": {
  1979. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  1980. },
  1981. "time": "2023-04-10T20:10:41+00:00"
  1982. },
  1983. {
  1984. "name": "psr/http-message",
  1985. "version": "1.1",
  1986. "source": {
  1987. "type": "git",
  1988. "url": "https://github.com/php-fig/http-message.git",
  1989. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  1990. },
  1991. "dist": {
  1992. "type": "zip",
  1993. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  1994. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  1995. "shasum": ""
  1996. },
  1997. "require": {
  1998. "php": "^7.2 || ^8.0"
  1999. },
  2000. "type": "library",
  2001. "extra": {
  2002. "branch-alias": {
  2003. "dev-master": "1.1.x-dev"
  2004. }
  2005. },
  2006. "autoload": {
  2007. "psr-4": {
  2008. "Psr\\Http\\Message\\": "src/"
  2009. }
  2010. },
  2011. "notification-url": "https://packagist.org/downloads/",
  2012. "license": [
  2013. "MIT"
  2014. ],
  2015. "authors": [
  2016. {
  2017. "name": "PHP-FIG",
  2018. "homepage": "http://www.php-fig.org/"
  2019. }
  2020. ],
  2021. "description": "Common interface for HTTP messages",
  2022. "homepage": "https://github.com/php-fig/http-message",
  2023. "keywords": [
  2024. "http",
  2025. "http-message",
  2026. "psr",
  2027. "psr-7",
  2028. "request",
  2029. "response"
  2030. ],
  2031. "support": {
  2032. "source": "https://github.com/php-fig/http-message/tree/1.1"
  2033. },
  2034. "time": "2023-04-04T09:50:52+00:00"
  2035. },
  2036. {
  2037. "name": "psr/log",
  2038. "version": "1.1.4",
  2039. "source": {
  2040. "type": "git",
  2041. "url": "https://github.com/php-fig/log.git",
  2042. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2043. },
  2044. "dist": {
  2045. "type": "zip",
  2046. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2047. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2048. "shasum": ""
  2049. },
  2050. "require": {
  2051. "php": ">=5.3.0"
  2052. },
  2053. "type": "library",
  2054. "extra": {
  2055. "branch-alias": {
  2056. "dev-master": "1.1.x-dev"
  2057. }
  2058. },
  2059. "autoload": {
  2060. "psr-4": {
  2061. "Psr\\Log\\": "Psr/Log/"
  2062. }
  2063. },
  2064. "notification-url": "https://packagist.org/downloads/",
  2065. "license": [
  2066. "MIT"
  2067. ],
  2068. "authors": [
  2069. {
  2070. "name": "PHP-FIG",
  2071. "homepage": "https://www.php-fig.org/"
  2072. }
  2073. ],
  2074. "description": "Common interface for logging libraries",
  2075. "homepage": "https://github.com/php-fig/log",
  2076. "keywords": [
  2077. "log",
  2078. "psr",
  2079. "psr-3"
  2080. ],
  2081. "support": {
  2082. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2083. },
  2084. "time": "2021-05-03T11:20:27+00:00"
  2085. },
  2086. {
  2087. "name": "psr/simple-cache",
  2088. "version": "1.0.1",
  2089. "source": {
  2090. "type": "git",
  2091. "url": "https://github.com/php-fig/simple-cache.git",
  2092. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2093. },
  2094. "dist": {
  2095. "type": "zip",
  2096. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2097. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2098. "shasum": ""
  2099. },
  2100. "require": {
  2101. "php": ">=5.3.0"
  2102. },
  2103. "type": "library",
  2104. "extra": {
  2105. "branch-alias": {
  2106. "dev-master": "1.0.x-dev"
  2107. }
  2108. },
  2109. "autoload": {
  2110. "psr-4": {
  2111. "Psr\\SimpleCache\\": "src/"
  2112. }
  2113. },
  2114. "notification-url": "https://packagist.org/downloads/",
  2115. "license": [
  2116. "MIT"
  2117. ],
  2118. "authors": [
  2119. {
  2120. "name": "PHP-FIG",
  2121. "homepage": "http://www.php-fig.org/"
  2122. }
  2123. ],
  2124. "description": "Common interfaces for simple caching",
  2125. "keywords": [
  2126. "cache",
  2127. "caching",
  2128. "psr",
  2129. "psr-16",
  2130. "simple-cache"
  2131. ],
  2132. "support": {
  2133. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2134. },
  2135. "time": "2017-10-23T01:57:42+00:00"
  2136. },
  2137. {
  2138. "name": "ralouphie/getallheaders",
  2139. "version": "3.0.3",
  2140. "source": {
  2141. "type": "git",
  2142. "url": "https://github.com/ralouphie/getallheaders.git",
  2143. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2144. },
  2145. "dist": {
  2146. "type": "zip",
  2147. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2148. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2149. "shasum": ""
  2150. },
  2151. "require": {
  2152. "php": ">=5.6"
  2153. },
  2154. "require-dev": {
  2155. "php-coveralls/php-coveralls": "^2.1",
  2156. "phpunit/phpunit": "^5 || ^6.5"
  2157. },
  2158. "type": "library",
  2159. "autoload": {
  2160. "files": [
  2161. "src/getallheaders.php"
  2162. ]
  2163. },
  2164. "notification-url": "https://packagist.org/downloads/",
  2165. "license": [
  2166. "MIT"
  2167. ],
  2168. "authors": [
  2169. {
  2170. "name": "Ralph Khattar",
  2171. "email": "ralph.khattar@gmail.com"
  2172. }
  2173. ],
  2174. "description": "A polyfill for getallheaders.",
  2175. "support": {
  2176. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2177. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2178. },
  2179. "time": "2019-03-08T08:55:37+00:00"
  2180. },
  2181. {
  2182. "name": "symfony/cache",
  2183. "version": "v5.4.35",
  2184. "source": {
  2185. "type": "git",
  2186. "url": "https://github.com/symfony/cache.git",
  2187. "reference": "db1adb004e2da984085d0178964eb6f319d3cba1"
  2188. },
  2189. "dist": {
  2190. "type": "zip",
  2191. "url": "https://api.github.com/repos/symfony/cache/zipball/db1adb004e2da984085d0178964eb6f319d3cba1",
  2192. "reference": "db1adb004e2da984085d0178964eb6f319d3cba1",
  2193. "shasum": ""
  2194. },
  2195. "require": {
  2196. "php": ">=7.2.5",
  2197. "psr/cache": "^1.0|^2.0",
  2198. "psr/log": "^1.1|^2|^3",
  2199. "symfony/cache-contracts": "^1.1.7|^2",
  2200. "symfony/deprecation-contracts": "^2.1|^3",
  2201. "symfony/polyfill-php73": "^1.9",
  2202. "symfony/polyfill-php80": "^1.16",
  2203. "symfony/service-contracts": "^1.1|^2|^3",
  2204. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  2205. },
  2206. "conflict": {
  2207. "doctrine/dbal": "<2.13.1",
  2208. "symfony/dependency-injection": "<4.4",
  2209. "symfony/http-kernel": "<4.4",
  2210. "symfony/var-dumper": "<4.4"
  2211. },
  2212. "provide": {
  2213. "psr/cache-implementation": "1.0|2.0",
  2214. "psr/simple-cache-implementation": "1.0|2.0",
  2215. "symfony/cache-implementation": "1.0|2.0"
  2216. },
  2217. "require-dev": {
  2218. "cache/integration-tests": "dev-master",
  2219. "doctrine/cache": "^1.6|^2.0",
  2220. "doctrine/dbal": "^2.13.1|^3|^4",
  2221. "predis/predis": "^1.1",
  2222. "psr/simple-cache": "^1.0|^2.0",
  2223. "symfony/config": "^4.4|^5.0|^6.0",
  2224. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2225. "symfony/filesystem": "^4.4|^5.0|^6.0",
  2226. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  2227. "symfony/messenger": "^4.4|^5.0|^6.0",
  2228. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  2229. },
  2230. "type": "library",
  2231. "autoload": {
  2232. "psr-4": {
  2233. "Symfony\\Component\\Cache\\": ""
  2234. },
  2235. "exclude-from-classmap": [
  2236. "/Tests/"
  2237. ]
  2238. },
  2239. "notification-url": "https://packagist.org/downloads/",
  2240. "license": [
  2241. "MIT"
  2242. ],
  2243. "authors": [
  2244. {
  2245. "name": "Nicolas Grekas",
  2246. "email": "p@tchwork.com"
  2247. },
  2248. {
  2249. "name": "Symfony Community",
  2250. "homepage": "https://symfony.com/contributors"
  2251. }
  2252. ],
  2253. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2254. "homepage": "https://symfony.com",
  2255. "keywords": [
  2256. "caching",
  2257. "psr6"
  2258. ],
  2259. "support": {
  2260. "source": "https://github.com/symfony/cache/tree/v5.4.35"
  2261. },
  2262. "funding": [
  2263. {
  2264. "url": "https://symfony.com/sponsor",
  2265. "type": "custom"
  2266. },
  2267. {
  2268. "url": "https://github.com/fabpot",
  2269. "type": "github"
  2270. },
  2271. {
  2272. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2273. "type": "tidelift"
  2274. }
  2275. ],
  2276. "time": "2024-01-23T13:51:25+00:00"
  2277. },
  2278. {
  2279. "name": "symfony/cache-contracts",
  2280. "version": "v2.5.2",
  2281. "source": {
  2282. "type": "git",
  2283. "url": "https://github.com/symfony/cache-contracts.git",
  2284. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  2285. },
  2286. "dist": {
  2287. "type": "zip",
  2288. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  2289. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  2290. "shasum": ""
  2291. },
  2292. "require": {
  2293. "php": ">=7.2.5",
  2294. "psr/cache": "^1.0|^2.0|^3.0"
  2295. },
  2296. "suggest": {
  2297. "symfony/cache-implementation": ""
  2298. },
  2299. "type": "library",
  2300. "extra": {
  2301. "branch-alias": {
  2302. "dev-main": "2.5-dev"
  2303. },
  2304. "thanks": {
  2305. "name": "symfony/contracts",
  2306. "url": "https://github.com/symfony/contracts"
  2307. }
  2308. },
  2309. "autoload": {
  2310. "psr-4": {
  2311. "Symfony\\Contracts\\Cache\\": ""
  2312. }
  2313. },
  2314. "notification-url": "https://packagist.org/downloads/",
  2315. "license": [
  2316. "MIT"
  2317. ],
  2318. "authors": [
  2319. {
  2320. "name": "Nicolas Grekas",
  2321. "email": "p@tchwork.com"
  2322. },
  2323. {
  2324. "name": "Symfony Community",
  2325. "homepage": "https://symfony.com/contributors"
  2326. }
  2327. ],
  2328. "description": "Generic abstractions related to caching",
  2329. "homepage": "https://symfony.com",
  2330. "keywords": [
  2331. "abstractions",
  2332. "contracts",
  2333. "decoupling",
  2334. "interfaces",
  2335. "interoperability",
  2336. "standards"
  2337. ],
  2338. "support": {
  2339. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  2340. },
  2341. "funding": [
  2342. {
  2343. "url": "https://symfony.com/sponsor",
  2344. "type": "custom"
  2345. },
  2346. {
  2347. "url": "https://github.com/fabpot",
  2348. "type": "github"
  2349. },
  2350. {
  2351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2352. "type": "tidelift"
  2353. }
  2354. ],
  2355. "time": "2022-01-02T09:53:40+00:00"
  2356. },
  2357. {
  2358. "name": "symfony/deprecation-contracts",
  2359. "version": "v2.5.2",
  2360. "source": {
  2361. "type": "git",
  2362. "url": "https://github.com/symfony/deprecation-contracts.git",
  2363. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  2364. },
  2365. "dist": {
  2366. "type": "zip",
  2367. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2368. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  2369. "shasum": ""
  2370. },
  2371. "require": {
  2372. "php": ">=7.1"
  2373. },
  2374. "type": "library",
  2375. "extra": {
  2376. "branch-alias": {
  2377. "dev-main": "2.5-dev"
  2378. },
  2379. "thanks": {
  2380. "name": "symfony/contracts",
  2381. "url": "https://github.com/symfony/contracts"
  2382. }
  2383. },
  2384. "autoload": {
  2385. "files": [
  2386. "function.php"
  2387. ]
  2388. },
  2389. "notification-url": "https://packagist.org/downloads/",
  2390. "license": [
  2391. "MIT"
  2392. ],
  2393. "authors": [
  2394. {
  2395. "name": "Nicolas Grekas",
  2396. "email": "p@tchwork.com"
  2397. },
  2398. {
  2399. "name": "Symfony Community",
  2400. "homepage": "https://symfony.com/contributors"
  2401. }
  2402. ],
  2403. "description": "A generic function and convention to trigger deprecation notices",
  2404. "homepage": "https://symfony.com",
  2405. "support": {
  2406. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  2407. },
  2408. "funding": [
  2409. {
  2410. "url": "https://symfony.com/sponsor",
  2411. "type": "custom"
  2412. },
  2413. {
  2414. "url": "https://github.com/fabpot",
  2415. "type": "github"
  2416. },
  2417. {
  2418. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2419. "type": "tidelift"
  2420. }
  2421. ],
  2422. "time": "2022-01-02T09:53:40+00:00"
  2423. },
  2424. {
  2425. "name": "symfony/event-dispatcher",
  2426. "version": "v5.4.35",
  2427. "source": {
  2428. "type": "git",
  2429. "url": "https://github.com/symfony/event-dispatcher.git",
  2430. "reference": "7a69a85c7ea5bdd1e875806a99c51a87d3a74b38"
  2431. },
  2432. "dist": {
  2433. "type": "zip",
  2434. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/7a69a85c7ea5bdd1e875806a99c51a87d3a74b38",
  2435. "reference": "7a69a85c7ea5bdd1e875806a99c51a87d3a74b38",
  2436. "shasum": ""
  2437. },
  2438. "require": {
  2439. "php": ">=7.2.5",
  2440. "symfony/deprecation-contracts": "^2.1|^3",
  2441. "symfony/event-dispatcher-contracts": "^2|^3",
  2442. "symfony/polyfill-php80": "^1.16"
  2443. },
  2444. "conflict": {
  2445. "symfony/dependency-injection": "<4.4"
  2446. },
  2447. "provide": {
  2448. "psr/event-dispatcher-implementation": "1.0",
  2449. "symfony/event-dispatcher-implementation": "2.0"
  2450. },
  2451. "require-dev": {
  2452. "psr/log": "^1|^2|^3",
  2453. "symfony/config": "^4.4|^5.0|^6.0",
  2454. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  2455. "symfony/error-handler": "^4.4|^5.0|^6.0",
  2456. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2457. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  2458. "symfony/service-contracts": "^1.1|^2|^3",
  2459. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  2460. },
  2461. "suggest": {
  2462. "symfony/dependency-injection": "",
  2463. "symfony/http-kernel": ""
  2464. },
  2465. "type": "library",
  2466. "autoload": {
  2467. "psr-4": {
  2468. "Symfony\\Component\\EventDispatcher\\": ""
  2469. },
  2470. "exclude-from-classmap": [
  2471. "/Tests/"
  2472. ]
  2473. },
  2474. "notification-url": "https://packagist.org/downloads/",
  2475. "license": [
  2476. "MIT"
  2477. ],
  2478. "authors": [
  2479. {
  2480. "name": "Fabien Potencier",
  2481. "email": "fabien@symfony.com"
  2482. },
  2483. {
  2484. "name": "Symfony Community",
  2485. "homepage": "https://symfony.com/contributors"
  2486. }
  2487. ],
  2488. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2489. "homepage": "https://symfony.com",
  2490. "support": {
  2491. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.35"
  2492. },
  2493. "funding": [
  2494. {
  2495. "url": "https://symfony.com/sponsor",
  2496. "type": "custom"
  2497. },
  2498. {
  2499. "url": "https://github.com/fabpot",
  2500. "type": "github"
  2501. },
  2502. {
  2503. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2504. "type": "tidelift"
  2505. }
  2506. ],
  2507. "time": "2024-01-23T13:51:25+00:00"
  2508. },
  2509. {
  2510. "name": "symfony/event-dispatcher-contracts",
  2511. "version": "v2.5.2",
  2512. "source": {
  2513. "type": "git",
  2514. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  2515. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  2516. },
  2517. "dist": {
  2518. "type": "zip",
  2519. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  2520. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  2521. "shasum": ""
  2522. },
  2523. "require": {
  2524. "php": ">=7.2.5",
  2525. "psr/event-dispatcher": "^1"
  2526. },
  2527. "suggest": {
  2528. "symfony/event-dispatcher-implementation": ""
  2529. },
  2530. "type": "library",
  2531. "extra": {
  2532. "branch-alias": {
  2533. "dev-main": "2.5-dev"
  2534. },
  2535. "thanks": {
  2536. "name": "symfony/contracts",
  2537. "url": "https://github.com/symfony/contracts"
  2538. }
  2539. },
  2540. "autoload": {
  2541. "psr-4": {
  2542. "Symfony\\Contracts\\EventDispatcher\\": ""
  2543. }
  2544. },
  2545. "notification-url": "https://packagist.org/downloads/",
  2546. "license": [
  2547. "MIT"
  2548. ],
  2549. "authors": [
  2550. {
  2551. "name": "Nicolas Grekas",
  2552. "email": "p@tchwork.com"
  2553. },
  2554. {
  2555. "name": "Symfony Community",
  2556. "homepage": "https://symfony.com/contributors"
  2557. }
  2558. ],
  2559. "description": "Generic abstractions related to dispatching event",
  2560. "homepage": "https://symfony.com",
  2561. "keywords": [
  2562. "abstractions",
  2563. "contracts",
  2564. "decoupling",
  2565. "interfaces",
  2566. "interoperability",
  2567. "standards"
  2568. ],
  2569. "support": {
  2570. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  2571. },
  2572. "funding": [
  2573. {
  2574. "url": "https://symfony.com/sponsor",
  2575. "type": "custom"
  2576. },
  2577. {
  2578. "url": "https://github.com/fabpot",
  2579. "type": "github"
  2580. },
  2581. {
  2582. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2583. "type": "tidelift"
  2584. }
  2585. ],
  2586. "time": "2022-01-02T09:53:40+00:00"
  2587. },
  2588. {
  2589. "name": "symfony/http-foundation",
  2590. "version": "v5.4.35",
  2591. "source": {
  2592. "type": "git",
  2593. "url": "https://github.com/symfony/http-foundation.git",
  2594. "reference": "f2ab692a22aef1cd54beb893aa0068bdfb093928"
  2595. },
  2596. "dist": {
  2597. "type": "zip",
  2598. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f2ab692a22aef1cd54beb893aa0068bdfb093928",
  2599. "reference": "f2ab692a22aef1cd54beb893aa0068bdfb093928",
  2600. "shasum": ""
  2601. },
  2602. "require": {
  2603. "php": ">=7.2.5",
  2604. "symfony/deprecation-contracts": "^2.1|^3",
  2605. "symfony/polyfill-mbstring": "~1.1",
  2606. "symfony/polyfill-php80": "^1.16"
  2607. },
  2608. "require-dev": {
  2609. "predis/predis": "~1.0",
  2610. "symfony/cache": "^4.4|^5.0|^6.0",
  2611. "symfony/dependency-injection": "^5.4|^6.0",
  2612. "symfony/expression-language": "^4.4|^5.0|^6.0",
  2613. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  2614. "symfony/mime": "^4.4|^5.0|^6.0",
  2615. "symfony/rate-limiter": "^5.2|^6.0"
  2616. },
  2617. "suggest": {
  2618. "symfony/mime": "To use the file extension guesser"
  2619. },
  2620. "type": "library",
  2621. "autoload": {
  2622. "psr-4": {
  2623. "Symfony\\Component\\HttpFoundation\\": ""
  2624. },
  2625. "exclude-from-classmap": [
  2626. "/Tests/"
  2627. ]
  2628. },
  2629. "notification-url": "https://packagist.org/downloads/",
  2630. "license": [
  2631. "MIT"
  2632. ],
  2633. "authors": [
  2634. {
  2635. "name": "Fabien Potencier",
  2636. "email": "fabien@symfony.com"
  2637. },
  2638. {
  2639. "name": "Symfony Community",
  2640. "homepage": "https://symfony.com/contributors"
  2641. }
  2642. ],
  2643. "description": "Defines an object-oriented layer for the HTTP specification",
  2644. "homepage": "https://symfony.com",
  2645. "support": {
  2646. "source": "https://github.com/symfony/http-foundation/tree/v5.4.35"
  2647. },
  2648. "funding": [
  2649. {
  2650. "url": "https://symfony.com/sponsor",
  2651. "type": "custom"
  2652. },
  2653. {
  2654. "url": "https://github.com/fabpot",
  2655. "type": "github"
  2656. },
  2657. {
  2658. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2659. "type": "tidelift"
  2660. }
  2661. ],
  2662. "time": "2024-01-23T13:51:25+00:00"
  2663. },
  2664. {
  2665. "name": "symfony/polyfill-mbstring",
  2666. "version": "v1.29.0",
  2667. "source": {
  2668. "type": "git",
  2669. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2670. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  2671. },
  2672. "dist": {
  2673. "type": "zip",
  2674. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  2675. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  2676. "shasum": ""
  2677. },
  2678. "require": {
  2679. "php": ">=7.1"
  2680. },
  2681. "provide": {
  2682. "ext-mbstring": "*"
  2683. },
  2684. "suggest": {
  2685. "ext-mbstring": "For best performance"
  2686. },
  2687. "type": "library",
  2688. "extra": {
  2689. "thanks": {
  2690. "name": "symfony/polyfill",
  2691. "url": "https://github.com/symfony/polyfill"
  2692. }
  2693. },
  2694. "autoload": {
  2695. "files": [
  2696. "bootstrap.php"
  2697. ],
  2698. "psr-4": {
  2699. "Symfony\\Polyfill\\Mbstring\\": ""
  2700. }
  2701. },
  2702. "notification-url": "https://packagist.org/downloads/",
  2703. "license": [
  2704. "MIT"
  2705. ],
  2706. "authors": [
  2707. {
  2708. "name": "Nicolas Grekas",
  2709. "email": "p@tchwork.com"
  2710. },
  2711. {
  2712. "name": "Symfony Community",
  2713. "homepage": "https://symfony.com/contributors"
  2714. }
  2715. ],
  2716. "description": "Symfony polyfill for the Mbstring extension",
  2717. "homepage": "https://symfony.com",
  2718. "keywords": [
  2719. "compatibility",
  2720. "mbstring",
  2721. "polyfill",
  2722. "portable",
  2723. "shim"
  2724. ],
  2725. "support": {
  2726. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  2727. },
  2728. "funding": [
  2729. {
  2730. "url": "https://symfony.com/sponsor",
  2731. "type": "custom"
  2732. },
  2733. {
  2734. "url": "https://github.com/fabpot",
  2735. "type": "github"
  2736. },
  2737. {
  2738. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2739. "type": "tidelift"
  2740. }
  2741. ],
  2742. "time": "2024-01-29T20:11:03+00:00"
  2743. },
  2744. {
  2745. "name": "symfony/polyfill-php73",
  2746. "version": "v1.29.0",
  2747. "source": {
  2748. "type": "git",
  2749. "url": "https://github.com/symfony/polyfill-php73.git",
  2750. "reference": "21bd091060673a1177ae842c0ef8fe30893114d2"
  2751. },
  2752. "dist": {
  2753. "type": "zip",
  2754. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/21bd091060673a1177ae842c0ef8fe30893114d2",
  2755. "reference": "21bd091060673a1177ae842c0ef8fe30893114d2",
  2756. "shasum": ""
  2757. },
  2758. "require": {
  2759. "php": ">=7.1"
  2760. },
  2761. "type": "library",
  2762. "extra": {
  2763. "thanks": {
  2764. "name": "symfony/polyfill",
  2765. "url": "https://github.com/symfony/polyfill"
  2766. }
  2767. },
  2768. "autoload": {
  2769. "files": [
  2770. "bootstrap.php"
  2771. ],
  2772. "psr-4": {
  2773. "Symfony\\Polyfill\\Php73\\": ""
  2774. },
  2775. "classmap": [
  2776. "Resources/stubs"
  2777. ]
  2778. },
  2779. "notification-url": "https://packagist.org/downloads/",
  2780. "license": [
  2781. "MIT"
  2782. ],
  2783. "authors": [
  2784. {
  2785. "name": "Nicolas Grekas",
  2786. "email": "p@tchwork.com"
  2787. },
  2788. {
  2789. "name": "Symfony Community",
  2790. "homepage": "https://symfony.com/contributors"
  2791. }
  2792. ],
  2793. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  2794. "homepage": "https://symfony.com",
  2795. "keywords": [
  2796. "compatibility",
  2797. "polyfill",
  2798. "portable",
  2799. "shim"
  2800. ],
  2801. "support": {
  2802. "source": "https://github.com/symfony/polyfill-php73/tree/v1.29.0"
  2803. },
  2804. "funding": [
  2805. {
  2806. "url": "https://symfony.com/sponsor",
  2807. "type": "custom"
  2808. },
  2809. {
  2810. "url": "https://github.com/fabpot",
  2811. "type": "github"
  2812. },
  2813. {
  2814. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2815. "type": "tidelift"
  2816. }
  2817. ],
  2818. "time": "2024-01-29T20:11:03+00:00"
  2819. },
  2820. {
  2821. "name": "symfony/polyfill-php80",
  2822. "version": "v1.29.0",
  2823. "source": {
  2824. "type": "git",
  2825. "url": "https://github.com/symfony/polyfill-php80.git",
  2826. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  2827. },
  2828. "dist": {
  2829. "type": "zip",
  2830. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  2831. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  2832. "shasum": ""
  2833. },
  2834. "require": {
  2835. "php": ">=7.1"
  2836. },
  2837. "type": "library",
  2838. "extra": {
  2839. "thanks": {
  2840. "name": "symfony/polyfill",
  2841. "url": "https://github.com/symfony/polyfill"
  2842. }
  2843. },
  2844. "autoload": {
  2845. "files": [
  2846. "bootstrap.php"
  2847. ],
  2848. "psr-4": {
  2849. "Symfony\\Polyfill\\Php80\\": ""
  2850. },
  2851. "classmap": [
  2852. "Resources/stubs"
  2853. ]
  2854. },
  2855. "notification-url": "https://packagist.org/downloads/",
  2856. "license": [
  2857. "MIT"
  2858. ],
  2859. "authors": [
  2860. {
  2861. "name": "Ion Bazan",
  2862. "email": "ion.bazan@gmail.com"
  2863. },
  2864. {
  2865. "name": "Nicolas Grekas",
  2866. "email": "p@tchwork.com"
  2867. },
  2868. {
  2869. "name": "Symfony Community",
  2870. "homepage": "https://symfony.com/contributors"
  2871. }
  2872. ],
  2873. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2874. "homepage": "https://symfony.com",
  2875. "keywords": [
  2876. "compatibility",
  2877. "polyfill",
  2878. "portable",
  2879. "shim"
  2880. ],
  2881. "support": {
  2882. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  2883. },
  2884. "funding": [
  2885. {
  2886. "url": "https://symfony.com/sponsor",
  2887. "type": "custom"
  2888. },
  2889. {
  2890. "url": "https://github.com/fabpot",
  2891. "type": "github"
  2892. },
  2893. {
  2894. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2895. "type": "tidelift"
  2896. }
  2897. ],
  2898. "time": "2024-01-29T20:11:03+00:00"
  2899. },
  2900. {
  2901. "name": "symfony/psr-http-message-bridge",
  2902. "version": "v2.3.1",
  2903. "source": {
  2904. "type": "git",
  2905. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  2906. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e"
  2907. },
  2908. "dist": {
  2909. "type": "zip",
  2910. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  2911. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  2912. "shasum": ""
  2913. },
  2914. "require": {
  2915. "php": ">=7.2.5",
  2916. "psr/http-message": "^1.0 || ^2.0",
  2917. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  2918. "symfony/http-foundation": "^5.4 || ^6.0"
  2919. },
  2920. "require-dev": {
  2921. "nyholm/psr7": "^1.1",
  2922. "psr/log": "^1.1 || ^2 || ^3",
  2923. "symfony/browser-kit": "^5.4 || ^6.0",
  2924. "symfony/config": "^5.4 || ^6.0",
  2925. "symfony/event-dispatcher": "^5.4 || ^6.0",
  2926. "symfony/framework-bundle": "^5.4 || ^6.0",
  2927. "symfony/http-kernel": "^5.4 || ^6.0",
  2928. "symfony/phpunit-bridge": "^6.2"
  2929. },
  2930. "suggest": {
  2931. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  2932. },
  2933. "type": "symfony-bridge",
  2934. "extra": {
  2935. "branch-alias": {
  2936. "dev-main": "2.3-dev"
  2937. }
  2938. },
  2939. "autoload": {
  2940. "psr-4": {
  2941. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  2942. },
  2943. "exclude-from-classmap": [
  2944. "/Tests/"
  2945. ]
  2946. },
  2947. "notification-url": "https://packagist.org/downloads/",
  2948. "license": [
  2949. "MIT"
  2950. ],
  2951. "authors": [
  2952. {
  2953. "name": "Fabien Potencier",
  2954. "email": "fabien@symfony.com"
  2955. },
  2956. {
  2957. "name": "Symfony Community",
  2958. "homepage": "http://symfony.com/contributors"
  2959. }
  2960. ],
  2961. "description": "PSR HTTP message bridge",
  2962. "homepage": "http://symfony.com",
  2963. "keywords": [
  2964. "http",
  2965. "http-message",
  2966. "psr-17",
  2967. "psr-7"
  2968. ],
  2969. "support": {
  2970. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  2971. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.3.1"
  2972. },
  2973. "funding": [
  2974. {
  2975. "url": "https://symfony.com/sponsor",
  2976. "type": "custom"
  2977. },
  2978. {
  2979. "url": "https://github.com/fabpot",
  2980. "type": "github"
  2981. },
  2982. {
  2983. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2984. "type": "tidelift"
  2985. }
  2986. ],
  2987. "time": "2023-07-26T11:53:26+00:00"
  2988. },
  2989. {
  2990. "name": "symfony/service-contracts",
  2991. "version": "v1.1.2",
  2992. "source": {
  2993. "type": "git",
  2994. "url": "https://github.com/symfony/service-contracts.git",
  2995. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0"
  2996. },
  2997. "dist": {
  2998. "type": "zip",
  2999. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/191afdcb5804db960d26d8566b7e9a2843cab3a0",
  3000. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0",
  3001. "shasum": ""
  3002. },
  3003. "require": {
  3004. "php": "^7.1.3"
  3005. },
  3006. "suggest": {
  3007. "psr/container": "",
  3008. "symfony/service-implementation": ""
  3009. },
  3010. "type": "library",
  3011. "extra": {
  3012. "branch-alias": {
  3013. "dev-master": "1.1-dev"
  3014. }
  3015. },
  3016. "autoload": {
  3017. "psr-4": {
  3018. "Symfony\\Contracts\\Service\\": ""
  3019. }
  3020. },
  3021. "notification-url": "https://packagist.org/downloads/",
  3022. "license": [
  3023. "MIT"
  3024. ],
  3025. "authors": [
  3026. {
  3027. "name": "Nicolas Grekas",
  3028. "email": "p@tchwork.com"
  3029. },
  3030. {
  3031. "name": "Symfony Community",
  3032. "homepage": "https://symfony.com/contributors"
  3033. }
  3034. ],
  3035. "description": "Generic abstractions related to writing services",
  3036. "homepage": "https://symfony.com",
  3037. "keywords": [
  3038. "abstractions",
  3039. "contracts",
  3040. "decoupling",
  3041. "interfaces",
  3042. "interoperability",
  3043. "standards"
  3044. ],
  3045. "support": {
  3046. "source": "https://github.com/symfony/service-contracts/tree/v1.1.2"
  3047. },
  3048. "time": "2019-05-28T07:50:59+00:00"
  3049. },
  3050. {
  3051. "name": "symfony/translation",
  3052. "version": "v4.4.47",
  3053. "source": {
  3054. "type": "git",
  3055. "url": "https://github.com/symfony/translation.git",
  3056. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94"
  3057. },
  3058. "dist": {
  3059. "type": "zip",
  3060. "url": "https://api.github.com/repos/symfony/translation/zipball/45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  3061. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  3062. "shasum": ""
  3063. },
  3064. "require": {
  3065. "php": ">=7.1.3",
  3066. "symfony/polyfill-mbstring": "~1.0",
  3067. "symfony/polyfill-php80": "^1.16",
  3068. "symfony/translation-contracts": "^1.1.6|^2"
  3069. },
  3070. "conflict": {
  3071. "symfony/config": "<3.4",
  3072. "symfony/dependency-injection": "<3.4",
  3073. "symfony/http-kernel": "<4.4",
  3074. "symfony/yaml": "<3.4"
  3075. },
  3076. "provide": {
  3077. "symfony/translation-implementation": "1.0|2.0"
  3078. },
  3079. "require-dev": {
  3080. "psr/log": "^1|^2|^3",
  3081. "symfony/config": "^3.4|^4.0|^5.0",
  3082. "symfony/console": "^3.4|^4.0|^5.0",
  3083. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  3084. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  3085. "symfony/http-kernel": "^4.4",
  3086. "symfony/intl": "^3.4|^4.0|^5.0",
  3087. "symfony/service-contracts": "^1.1.2|^2",
  3088. "symfony/yaml": "^3.4|^4.0|^5.0"
  3089. },
  3090. "suggest": {
  3091. "psr/log-implementation": "To use logging capability in translator",
  3092. "symfony/config": "",
  3093. "symfony/yaml": ""
  3094. },
  3095. "type": "library",
  3096. "autoload": {
  3097. "psr-4": {
  3098. "Symfony\\Component\\Translation\\": ""
  3099. },
  3100. "exclude-from-classmap": [
  3101. "/Tests/"
  3102. ]
  3103. },
  3104. "notification-url": "https://packagist.org/downloads/",
  3105. "license": [
  3106. "MIT"
  3107. ],
  3108. "authors": [
  3109. {
  3110. "name": "Fabien Potencier",
  3111. "email": "fabien@symfony.com"
  3112. },
  3113. {
  3114. "name": "Symfony Community",
  3115. "homepage": "https://symfony.com/contributors"
  3116. }
  3117. ],
  3118. "description": "Provides tools to internationalize your application",
  3119. "homepage": "https://symfony.com",
  3120. "support": {
  3121. "source": "https://github.com/symfony/translation/tree/v4.4.47"
  3122. },
  3123. "funding": [
  3124. {
  3125. "url": "https://symfony.com/sponsor",
  3126. "type": "custom"
  3127. },
  3128. {
  3129. "url": "https://github.com/fabpot",
  3130. "type": "github"
  3131. },
  3132. {
  3133. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3134. "type": "tidelift"
  3135. }
  3136. ],
  3137. "time": "2022-10-03T15:15:11+00:00"
  3138. },
  3139. {
  3140. "name": "symfony/translation-contracts",
  3141. "version": "v2.5.2",
  3142. "source": {
  3143. "type": "git",
  3144. "url": "https://github.com/symfony/translation-contracts.git",
  3145. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  3146. },
  3147. "dist": {
  3148. "type": "zip",
  3149. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  3150. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  3151. "shasum": ""
  3152. },
  3153. "require": {
  3154. "php": ">=7.2.5"
  3155. },
  3156. "suggest": {
  3157. "symfony/translation-implementation": ""
  3158. },
  3159. "type": "library",
  3160. "extra": {
  3161. "branch-alias": {
  3162. "dev-main": "2.5-dev"
  3163. },
  3164. "thanks": {
  3165. "name": "symfony/contracts",
  3166. "url": "https://github.com/symfony/contracts"
  3167. }
  3168. },
  3169. "autoload": {
  3170. "psr-4": {
  3171. "Symfony\\Contracts\\Translation\\": ""
  3172. }
  3173. },
  3174. "notification-url": "https://packagist.org/downloads/",
  3175. "license": [
  3176. "MIT"
  3177. ],
  3178. "authors": [
  3179. {
  3180. "name": "Nicolas Grekas",
  3181. "email": "p@tchwork.com"
  3182. },
  3183. {
  3184. "name": "Symfony Community",
  3185. "homepage": "https://symfony.com/contributors"
  3186. }
  3187. ],
  3188. "description": "Generic abstractions related to translation",
  3189. "homepage": "https://symfony.com",
  3190. "keywords": [
  3191. "abstractions",
  3192. "contracts",
  3193. "decoupling",
  3194. "interfaces",
  3195. "interoperability",
  3196. "standards"
  3197. ],
  3198. "support": {
  3199. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  3200. },
  3201. "funding": [
  3202. {
  3203. "url": "https://symfony.com/sponsor",
  3204. "type": "custom"
  3205. },
  3206. {
  3207. "url": "https://github.com/fabpot",
  3208. "type": "github"
  3209. },
  3210. {
  3211. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3212. "type": "tidelift"
  3213. }
  3214. ],
  3215. "time": "2022-06-27T16:58:25+00:00"
  3216. },
  3217. {
  3218. "name": "symfony/var-exporter",
  3219. "version": "v5.4.35",
  3220. "source": {
  3221. "type": "git",
  3222. "url": "https://github.com/symfony/var-exporter.git",
  3223. "reference": "abb0a151b62d6b07e816487e20040464af96cae7"
  3224. },
  3225. "dist": {
  3226. "type": "zip",
  3227. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/abb0a151b62d6b07e816487e20040464af96cae7",
  3228. "reference": "abb0a151b62d6b07e816487e20040464af96cae7",
  3229. "shasum": ""
  3230. },
  3231. "require": {
  3232. "php": ">=7.2.5",
  3233. "symfony/polyfill-php80": "^1.16"
  3234. },
  3235. "require-dev": {
  3236. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  3237. },
  3238. "type": "library",
  3239. "autoload": {
  3240. "psr-4": {
  3241. "Symfony\\Component\\VarExporter\\": ""
  3242. },
  3243. "exclude-from-classmap": [
  3244. "/Tests/"
  3245. ]
  3246. },
  3247. "notification-url": "https://packagist.org/downloads/",
  3248. "license": [
  3249. "MIT"
  3250. ],
  3251. "authors": [
  3252. {
  3253. "name": "Nicolas Grekas",
  3254. "email": "p@tchwork.com"
  3255. },
  3256. {
  3257. "name": "Symfony Community",
  3258. "homepage": "https://symfony.com/contributors"
  3259. }
  3260. ],
  3261. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  3262. "homepage": "https://symfony.com",
  3263. "keywords": [
  3264. "clone",
  3265. "construct",
  3266. "export",
  3267. "hydrate",
  3268. "instantiate",
  3269. "serialize"
  3270. ],
  3271. "support": {
  3272. "source": "https://github.com/symfony/var-exporter/tree/v5.4.35"
  3273. },
  3274. "funding": [
  3275. {
  3276. "url": "https://symfony.com/sponsor",
  3277. "type": "custom"
  3278. },
  3279. {
  3280. "url": "https://github.com/fabpot",
  3281. "type": "github"
  3282. },
  3283. {
  3284. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3285. "type": "tidelift"
  3286. }
  3287. ],
  3288. "time": "2024-01-23T13:51:25+00:00"
  3289. },
  3290. {
  3291. "name": "topthink/framework",
  3292. "version": "v5.1.42",
  3293. "source": {
  3294. "type": "git",
  3295. "url": "https://github.com/top-think/framework.git",
  3296. "reference": "ecf1a90d397d821ce2df58f7d47e798c17eba3ad"
  3297. },
  3298. "dist": {
  3299. "type": "zip",
  3300. "url": "https://api.github.com/repos/top-think/framework/zipball/ecf1a90d397d821ce2df58f7d47e798c17eba3ad",
  3301. "reference": "ecf1a90d397d821ce2df58f7d47e798c17eba3ad",
  3302. "shasum": ""
  3303. },
  3304. "require": {
  3305. "php": ">=5.6.0",
  3306. "topthink/think-installer": "2.*"
  3307. },
  3308. "require-dev": {
  3309. "johnkary/phpunit-speedtrap": "^1.0",
  3310. "mikey179/vfsstream": "~1.6",
  3311. "phpdocumentor/reflection-docblock": "^2.0",
  3312. "phploc/phploc": "2.*",
  3313. "phpunit/phpunit": "^5.0|^6.0",
  3314. "sebastian/phpcpd": "2.*",
  3315. "squizlabs/php_codesniffer": "2.*"
  3316. },
  3317. "type": "think-framework",
  3318. "notification-url": "https://packagist.org/downloads/",
  3319. "license": [
  3320. "Apache-2.0"
  3321. ],
  3322. "authors": [
  3323. {
  3324. "name": "liu21st",
  3325. "email": "liu21st@gmail.com"
  3326. },
  3327. {
  3328. "name": "yunwuxin",
  3329. "email": "448901948@qq.com"
  3330. }
  3331. ],
  3332. "description": "the new thinkphp framework",
  3333. "homepage": "http://thinkphp.cn/",
  3334. "keywords": [
  3335. "framework",
  3336. "orm",
  3337. "thinkphp"
  3338. ],
  3339. "support": {
  3340. "issues": "https://github.com/top-think/framework/issues",
  3341. "source": "https://github.com/top-think/framework/tree/v5.1.42"
  3342. },
  3343. "time": "2022-10-25T15:04:49+00:00"
  3344. },
  3345. {
  3346. "name": "topthink/think-helper",
  3347. "version": "v1.0.7",
  3348. "source": {
  3349. "type": "git",
  3350. "url": "https://github.com/top-think/think-helper.git",
  3351. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019"
  3352. },
  3353. "dist": {
  3354. "type": "zip",
  3355. "url": "https://api.github.com/repos/top-think/think-helper/zipball/5f92178606c8ce131d36b37a57c58eb71e55f019",
  3356. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019",
  3357. "shasum": ""
  3358. },
  3359. "type": "library",
  3360. "autoload": {
  3361. "files": [
  3362. "src/helper.php"
  3363. ],
  3364. "psr-4": {
  3365. "think\\helper\\": "src"
  3366. }
  3367. },
  3368. "notification-url": "https://packagist.org/downloads/",
  3369. "license": [
  3370. "Apache-2.0"
  3371. ],
  3372. "authors": [
  3373. {
  3374. "name": "yunwuxin",
  3375. "email": "448901948@qq.com"
  3376. }
  3377. ],
  3378. "description": "The ThinkPHP5 Helper Package",
  3379. "support": {
  3380. "issues": "https://github.com/top-think/think-helper/issues",
  3381. "source": "https://github.com/top-think/think-helper/tree/master"
  3382. },
  3383. "time": "2018-10-05T00:43:21+00:00"
  3384. },
  3385. {
  3386. "name": "topthink/think-image",
  3387. "version": "v1.0.7",
  3388. "source": {
  3389. "type": "git",
  3390. "url": "https://github.com/top-think/think-image.git",
  3391. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512"
  3392. },
  3393. "dist": {
  3394. "type": "zip",
  3395. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  3396. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  3397. "shasum": ""
  3398. },
  3399. "require": {
  3400. "ext-gd": "*"
  3401. },
  3402. "require-dev": {
  3403. "phpunit/phpunit": "4.8.*",
  3404. "topthink/framework": "^5.0"
  3405. },
  3406. "type": "library",
  3407. "autoload": {
  3408. "psr-4": {
  3409. "think\\": "src"
  3410. }
  3411. },
  3412. "notification-url": "https://packagist.org/downloads/",
  3413. "license": [
  3414. "Apache-2.0"
  3415. ],
  3416. "authors": [
  3417. {
  3418. "name": "yunwuxin",
  3419. "email": "448901948@qq.com"
  3420. }
  3421. ],
  3422. "description": "The ThinkPHP5 Image Package",
  3423. "support": {
  3424. "issues": "https://github.com/top-think/think-image/issues",
  3425. "source": "https://github.com/top-think/think-image/tree/master"
  3426. },
  3427. "time": "2016-09-29T06:05:43+00:00"
  3428. },
  3429. {
  3430. "name": "topthink/think-installer",
  3431. "version": "v2.0.5",
  3432. "source": {
  3433. "type": "git",
  3434. "url": "https://github.com/top-think/think-installer.git",
  3435. "reference": "38ba647706e35d6704b5d370c06f8a160b635f88"
  3436. },
  3437. "dist": {
  3438. "type": "zip",
  3439. "url": "https://api.github.com/repos/top-think/think-installer/zipball/38ba647706e35d6704b5d370c06f8a160b635f88",
  3440. "reference": "38ba647706e35d6704b5d370c06f8a160b635f88",
  3441. "shasum": ""
  3442. },
  3443. "require": {
  3444. "composer-plugin-api": "^1.0||^2.0"
  3445. },
  3446. "require-dev": {
  3447. "composer/composer": "^1.0||^2.0"
  3448. },
  3449. "type": "composer-plugin",
  3450. "extra": {
  3451. "class": "think\\composer\\Plugin"
  3452. },
  3453. "autoload": {
  3454. "psr-4": {
  3455. "think\\composer\\": "src"
  3456. }
  3457. },
  3458. "notification-url": "https://packagist.org/downloads/",
  3459. "license": [
  3460. "Apache-2.0"
  3461. ],
  3462. "authors": [
  3463. {
  3464. "name": "yunwuxin",
  3465. "email": "448901948@qq.com"
  3466. }
  3467. ],
  3468. "support": {
  3469. "issues": "https://github.com/top-think/think-installer/issues",
  3470. "source": "https://github.com/top-think/think-installer/tree/v2.0.5"
  3471. },
  3472. "time": "2021-01-14T12:12:14+00:00"
  3473. },
  3474. {
  3475. "name": "topthink/think-queue",
  3476. "version": "v2.0.4",
  3477. "source": {
  3478. "type": "git",
  3479. "url": "https://github.com/top-think/think-queue.git",
  3480. "reference": "d9b8f38c7af8ad770257b0d7db711ce8b12a6969"
  3481. },
  3482. "dist": {
  3483. "type": "zip",
  3484. "url": "https://api.github.com/repos/top-think/think-queue/zipball/d9b8f38c7af8ad770257b0d7db711ce8b12a6969",
  3485. "reference": "d9b8f38c7af8ad770257b0d7db711ce8b12a6969",
  3486. "shasum": ""
  3487. },
  3488. "require": {
  3489. "topthink/framework": "5.1.*",
  3490. "topthink/think-helper": ">=1.0.4",
  3491. "topthink/think-installer": "^2.0"
  3492. },
  3493. "type": "think-extend",
  3494. "extra": {
  3495. "think-config": {
  3496. "queue": "src/config.php"
  3497. }
  3498. },
  3499. "autoload": {
  3500. "files": [
  3501. "src/common.php"
  3502. ],
  3503. "psr-4": {
  3504. "think\\": "src"
  3505. }
  3506. },
  3507. "notification-url": "https://packagist.org/downloads/",
  3508. "license": [
  3509. "Apache-2.0"
  3510. ],
  3511. "authors": [
  3512. {
  3513. "name": "yunwuxin",
  3514. "email": "448901948@qq.com"
  3515. }
  3516. ],
  3517. "description": "The ThinkPHP5 Queue Package",
  3518. "support": {
  3519. "issues": "https://github.com/top-think/think-queue/issues",
  3520. "source": "https://github.com/top-think/think-queue/tree/2.0"
  3521. },
  3522. "time": "2018-05-11T06:55:55+00:00"
  3523. },
  3524. {
  3525. "name": "workerman/gatewayclient",
  3526. "version": "v3.0.17",
  3527. "source": {
  3528. "type": "git",
  3529. "url": "https://github.com/walkor/GatewayClient.git",
  3530. "reference": "0f67651ce92628d5e85d2ae45478f12b0d1e9f66"
  3531. },
  3532. "dist": {
  3533. "type": "zip",
  3534. "url": "https://api.github.com/repos/walkor/GatewayClient/zipball/0f67651ce92628d5e85d2ae45478f12b0d1e9f66",
  3535. "reference": "0f67651ce92628d5e85d2ae45478f12b0d1e9f66",
  3536. "shasum": ""
  3537. },
  3538. "type": "library",
  3539. "autoload": {
  3540. "psr-4": {
  3541. "GatewayClient\\": "./"
  3542. }
  3543. },
  3544. "notification-url": "https://packagist.org/downloads/",
  3545. "license": [
  3546. "MIT"
  3547. ],
  3548. "homepage": "http://www.workerman.net",
  3549. "support": {
  3550. "issues": "https://github.com/walkor/GatewayClient/issues",
  3551. "source": "https://github.com/walkor/GatewayClient/tree/v3.0.17"
  3552. },
  3553. "time": "2023-11-09T13:48:46+00:00"
  3554. },
  3555. {
  3556. "name": "yunwuxin/think-cron",
  3557. "version": "v2.0.0",
  3558. "source": {
  3559. "type": "git",
  3560. "url": "https://github.com/yunwuxin/think-cron.git",
  3561. "reference": "4ac4c707073f767579e68d71d80fdbd881ecd565"
  3562. },
  3563. "dist": {
  3564. "type": "zip",
  3565. "url": "https://api.github.com/repos/yunwuxin/think-cron/zipball/4ac4c707073f767579e68d71d80fdbd881ecd565",
  3566. "reference": "4ac4c707073f767579e68d71d80fdbd881ecd565",
  3567. "shasum": ""
  3568. },
  3569. "require": {
  3570. "jenssegers/date": "^3.2",
  3571. "mtdowling/cron-expression": "^1.2",
  3572. "php": ">=5.6.0",
  3573. "topthink/think-installer": "^2.0"
  3574. },
  3575. "require-dev": {
  3576. "topthink/framework": "^5.1"
  3577. },
  3578. "type": "think-extend",
  3579. "extra": {
  3580. "think-config": {
  3581. "cron": "src/config.php"
  3582. }
  3583. },
  3584. "autoload": {
  3585. "files": [
  3586. "src/helper.php"
  3587. ],
  3588. "psr-4": {
  3589. "yunwuxin\\cron\\": "src/cron"
  3590. }
  3591. },
  3592. "notification-url": "https://packagist.org/downloads/",
  3593. "license": [
  3594. "Apache-2.0"
  3595. ],
  3596. "authors": [
  3597. {
  3598. "name": "yunwuxin",
  3599. "email": "448901948@qq.com"
  3600. }
  3601. ],
  3602. "description": "计划任务",
  3603. "support": {
  3604. "issues": "https://github.com/yunwuxin/think-cron/issues",
  3605. "source": "https://github.com/yunwuxin/think-cron/tree/2.0"
  3606. },
  3607. "time": "2018-09-10T09:45:23+00:00"
  3608. },
  3609. {
  3610. "name": "zendframework/zend-escaper",
  3611. "version": "2.6.1",
  3612. "source": {
  3613. "type": "git",
  3614. "url": "https://github.com/zendframework/zend-escaper.git",
  3615. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f"
  3616. },
  3617. "dist": {
  3618. "type": "zip",
  3619. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  3620. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  3621. "shasum": ""
  3622. },
  3623. "require": {
  3624. "php": "^5.6 || ^7.0"
  3625. },
  3626. "require-dev": {
  3627. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  3628. "zendframework/zend-coding-standard": "~1.0.0"
  3629. },
  3630. "type": "library",
  3631. "extra": {
  3632. "branch-alias": {
  3633. "dev-master": "2.6.x-dev",
  3634. "dev-develop": "2.7.x-dev"
  3635. }
  3636. },
  3637. "autoload": {
  3638. "psr-4": {
  3639. "Zend\\Escaper\\": "src/"
  3640. }
  3641. },
  3642. "notification-url": "https://packagist.org/downloads/",
  3643. "license": [
  3644. "BSD-3-Clause"
  3645. ],
  3646. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  3647. "keywords": [
  3648. "ZendFramework",
  3649. "escaper",
  3650. "zf"
  3651. ],
  3652. "support": {
  3653. "chat": "https://zendframework-slack.herokuapp.com",
  3654. "docs": "https://docs.zendframework.com/zend-escaper/",
  3655. "forum": "https://discourse.zendframework.com/c/questions/components",
  3656. "issues": "https://github.com/zendframework/zend-escaper/issues",
  3657. "rss": "https://github.com/zendframework/zend-escaper/releases.atom",
  3658. "source": "https://github.com/zendframework/zend-escaper"
  3659. },
  3660. "abandoned": "laminas/laminas-escaper",
  3661. "time": "2019-09-05T20:03:20+00:00"
  3662. }
  3663. ],
  3664. "packages-dev": [],
  3665. "aliases": [],
  3666. "minimum-stability": "stable",
  3667. "stability-flags": [],
  3668. "prefer-stable": false,
  3669. "prefer-lowest": false,
  3670. "platform": {
  3671. "php": ">=7.1"
  3672. },
  3673. "platform-dev": [],
  3674. "plugin-api-version": "2.3.0"
  3675. }