installed.json 138 KB

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