installed.json 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918
  1. {
  2. "packages": [
  3. {
  4. "name": "adbario/php-dot-notation",
  5. "version": "2.x-dev",
  6. "version_normalized": "2.9999999.9999999.9999999-dev",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/adbario/php-dot-notation.git",
  10. "reference": "84da820f12be2a504c9612757ffb7850eceb34fe"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/84da820f12be2a504c9612757ffb7850eceb34fe",
  15. "reference": "84da820f12be2a504c9612757ffb7850eceb34fe",
  16. "shasum": "",
  17. "mirrors": [
  18. {
  19. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  20. "preferred": true
  21. }
  22. ]
  23. },
  24. "require": {
  25. "ext-json": "*",
  26. "php": ">=5.5"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^4|^5|^6|^7|^8",
  30. "squizlabs/php_codesniffer": "^3.0"
  31. },
  32. "time": "2020-04-04T01:24:44+00:00",
  33. "type": "library",
  34. "installation-source": "source",
  35. "autoload": {
  36. "files": [
  37. "src/helpers.php"
  38. ],
  39. "psr-4": {
  40. "Adbar\\": "src"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Riku Särkinen",
  50. "email": "riku@adbar.io"
  51. }
  52. ],
  53. "description": "PHP dot notation access to arrays",
  54. "homepage": "https://github.com/adbario/php-dot-notation",
  55. "keywords": [
  56. "ArrayAccess",
  57. "dotnotation"
  58. ],
  59. "install-path": "../adbario/php-dot-notation"
  60. },
  61. {
  62. "name": "alibabacloud/client",
  63. "version": "dev-master",
  64. "version_normalized": "dev-master",
  65. "source": {
  66. "type": "git",
  67. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  68. "reference": "ce97db83d26df698c85d79302f33f65f089c646b"
  69. },
  70. "dist": {
  71. "type": "zip",
  72. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/ce97db83d26df698c85d79302f33f65f089c646b",
  73. "reference": "ce97db83d26df698c85d79302f33f65f089c646b",
  74. "shasum": "",
  75. "mirrors": [
  76. {
  77. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  78. "preferred": true
  79. }
  80. ]
  81. },
  82. "require": {
  83. "adbario/php-dot-notation": "^2.2",
  84. "clagiordano/weblibs-configmanager": "^1.0",
  85. "danielstjules/stringy": "^3.1",
  86. "ext-curl": "*",
  87. "ext-json": "*",
  88. "ext-libxml": "*",
  89. "ext-mbstring": "*",
  90. "ext-openssl": "*",
  91. "ext-simplexml": "*",
  92. "ext-xmlwriter": "*",
  93. "guzzlehttp/guzzle": "^6.3|^7.0",
  94. "mtdowling/jmespath.php": "^2.5",
  95. "php": ">=5.5"
  96. },
  97. "require-dev": {
  98. "composer/composer": "^1.8",
  99. "drupal/coder": "^8.3",
  100. "ext-dom": "*",
  101. "ext-pcre": "*",
  102. "ext-sockets": "*",
  103. "ext-spl": "*",
  104. "league/climate": "^3.2.4",
  105. "mikey179/vfsstream": "^1.6",
  106. "monolog/monolog": "^1.24",
  107. "phpunit/phpunit": "^5.7.27|^6.1",
  108. "psr/cache": "^1.0",
  109. "symfony/dotenv": "^3.4",
  110. "symfony/var-dumper": "^3.4"
  111. },
  112. "suggest": {
  113. "ext-sockets": "To use client-side monitoring"
  114. },
  115. "time": "2021-03-24T03:13:25+00:00",
  116. "type": "library",
  117. "installation-source": "source",
  118. "autoload": {
  119. "psr-4": {
  120. "AlibabaCloud\\Client\\": "src"
  121. },
  122. "files": [
  123. "src/Functions.php"
  124. ]
  125. },
  126. "notification-url": "https://packagist.org/downloads/",
  127. "license": [
  128. "Apache-2.0"
  129. ],
  130. "authors": [
  131. {
  132. "name": "Alibaba Cloud SDK",
  133. "email": "sdk-team@alibabacloud.com",
  134. "homepage": "http://www.alibabacloud.com"
  135. }
  136. ],
  137. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  138. "homepage": "https://www.alibabacloud.com/",
  139. "keywords": [
  140. "alibaba",
  141. "alibabacloud",
  142. "aliyun",
  143. "client",
  144. "cloud",
  145. "library",
  146. "sdk",
  147. "tool"
  148. ],
  149. "install-path": "../alibabacloud/client"
  150. },
  151. {
  152. "name": "aliyuncs/oss-sdk-php",
  153. "version": "v2.3.0",
  154. "version_normalized": "2.3.0.0",
  155. "source": {
  156. "type": "git",
  157. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  158. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8"
  159. },
  160. "dist": {
  161. "type": "zip",
  162. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/e69f57916678458642ac9d2fd341ae78a56996c8",
  163. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8",
  164. "shasum": "",
  165. "mirrors": [
  166. {
  167. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  168. "preferred": true
  169. }
  170. ]
  171. },
  172. "require": {
  173. "php": ">=5.3"
  174. },
  175. "require-dev": {
  176. "phpunit/phpunit": "~4.0",
  177. "satooshi/php-coveralls": "~1.0"
  178. },
  179. "time": "2018-01-08T06:59:35+00:00",
  180. "type": "library",
  181. "installation-source": "dist",
  182. "autoload": {
  183. "psr-4": {
  184. "OSS\\": "src/OSS"
  185. }
  186. },
  187. "notification-url": "https://packagist.org/downloads/",
  188. "license": [
  189. "MIT"
  190. ],
  191. "authors": [
  192. {
  193. "name": "Aliyuncs",
  194. "homepage": "http://www.aliyun.com"
  195. }
  196. ],
  197. "description": "Aliyun OSS SDK for PHP",
  198. "homepage": "http://www.aliyun.com/product/oss/",
  199. "install-path": "../aliyuncs/oss-sdk-php"
  200. },
  201. {
  202. "name": "baidu/aip-sdk",
  203. "version": "dev-master",
  204. "version_normalized": "dev-master",
  205. "source": {
  206. "type": "git",
  207. "url": "https://github.com/Baidu-AIP/php-sdk.git",
  208. "reference": "84e5936eb6426b4cc9d9a96848568b9dd527b4a0"
  209. },
  210. "dist": {
  211. "type": "zip",
  212. "url": "https://api.github.com/repos/Baidu-AIP/php-sdk/zipball/84e5936eb6426b4cc9d9a96848568b9dd527b4a0",
  213. "reference": "84e5936eb6426b4cc9d9a96848568b9dd527b4a0",
  214. "shasum": "",
  215. "mirrors": [
  216. {
  217. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  218. "preferred": true
  219. }
  220. ]
  221. },
  222. "require": {
  223. "php": ">=5.3.3"
  224. },
  225. "time": "2019-06-20T07:57:25+00:00",
  226. "type": "library",
  227. "installation-source": "source",
  228. "autoload": {
  229. "files": [
  230. "lib/AipBase.php",
  231. "AipBodyAnalysis.php",
  232. "AipContentCensor.php",
  233. "AipFace.php",
  234. "AipImageClassify.php",
  235. "AipImageSearch.php",
  236. "AipKg.php",
  237. "AipNlp.php",
  238. "AipOcr.php",
  239. "AipSpeech.php"
  240. ]
  241. },
  242. "notification-url": "https://packagist.org/downloads/",
  243. "license": [
  244. "Apache-2.0"
  245. ],
  246. "authors": [
  247. {
  248. "name": "baidu"
  249. }
  250. ],
  251. "description": "baidu pulic ai php sdk",
  252. "install-path": "../baidu/aip-sdk"
  253. },
  254. {
  255. "name": "bower-asset/bootstrap",
  256. "version": "v3.4.1",
  257. "version_normalized": "3.4.1.0",
  258. "source": {
  259. "type": "git",
  260. "url": "https://github.com/twbs/bootstrap.git",
  261. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e"
  262. },
  263. "dist": {
  264. "type": "zip",
  265. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/68b0d231a13201eb14acd3dc84e51543d16e5f7e",
  266. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e",
  267. "shasum": ""
  268. },
  269. "require": {
  270. "bower-asset/jquery": ">=1.9.1,<=3"
  271. },
  272. "type": "bower-asset-library",
  273. "extra": {
  274. "bower-asset-main": [
  275. "less/bootstrap.less",
  276. "dist/js/bootstrap.js"
  277. ],
  278. "bower-asset-ignore": [
  279. "/.*",
  280. "_config.yml",
  281. "CNAME",
  282. "composer.json",
  283. "CONTRIBUTING.md",
  284. "docs",
  285. "js/tests",
  286. "test-infra"
  287. ]
  288. },
  289. "installation-source": "dist",
  290. "license": [
  291. "MIT"
  292. ],
  293. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  294. "keywords": [
  295. "css",
  296. "framework",
  297. "front-end",
  298. "js",
  299. "less",
  300. "mobile-first",
  301. "responsive",
  302. "web"
  303. ],
  304. "install-path": "../bower-asset/bootstrap"
  305. },
  306. {
  307. "name": "bower-asset/inputmask",
  308. "version": "3.3.11",
  309. "version_normalized": "3.3.11.0",
  310. "source": {
  311. "type": "git",
  312. "url": "https://github.com/RobinHerbots/Inputmask.git",
  313. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  314. },
  315. "dist": {
  316. "type": "zip",
  317. "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/5e670ad62f50c738388d4dcec78d2888505ad77b",
  318. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b",
  319. "shasum": ""
  320. },
  321. "require": {
  322. "bower-asset/jquery": ">=1.7"
  323. },
  324. "time": "2017-11-21T11:46:23+00:00",
  325. "type": "bower-asset-library",
  326. "extra": {
  327. "bower-asset-main": [
  328. "./dist/inputmask/inputmask.js",
  329. "./dist/inputmask/inputmask.extensions.js",
  330. "./dist/inputmask/inputmask.date.extensions.js",
  331. "./dist/inputmask/inputmask.numeric.extensions.js",
  332. "./dist/inputmask/inputmask.phone.extensions.js",
  333. "./dist/inputmask/jquery.inputmask.js",
  334. "./dist/inputmask/global/document.js",
  335. "./dist/inputmask/global/window.js",
  336. "./dist/inputmask/phone-codes/phone.js",
  337. "./dist/inputmask/phone-codes/phone-be.js",
  338. "./dist/inputmask/phone-codes/phone-nl.js",
  339. "./dist/inputmask/phone-codes/phone-ru.js",
  340. "./dist/inputmask/phone-codes/phone-uk.js",
  341. "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.jqlite.js",
  342. "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.jquery.js",
  343. "./dist/inputmask/dependencyLibs/inputmask.dependencyLib.js",
  344. "./dist/inputmask/bindings/inputmask.binding.js"
  345. ],
  346. "bower-asset-ignore": [
  347. "**/*",
  348. "!dist/*",
  349. "!dist/inputmask/*",
  350. "!dist/min/*",
  351. "!dist/min/inputmask/*"
  352. ]
  353. },
  354. "installation-source": "dist",
  355. "license": [
  356. "http://opensource.org/licenses/mit-license.php"
  357. ],
  358. "description": "Inputmask is a javascript library which creates an input mask. Inputmask can run against vanilla javascript, jQuery and jqlite.",
  359. "keywords": [
  360. "form",
  361. "input",
  362. "inputmask",
  363. "jquery",
  364. "mask",
  365. "plugins"
  366. ],
  367. "install-path": "../bower-asset/inputmask"
  368. },
  369. {
  370. "name": "bower-asset/jquery",
  371. "version": "2.2.4",
  372. "version_normalized": "2.2.4.0",
  373. "source": {
  374. "type": "git",
  375. "url": "https://github.com/jquery/jquery-dist.git",
  376. "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72"
  377. },
  378. "dist": {
  379. "type": "zip",
  380. "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/c0185ab7c75aab88762c5aae780b9d83b80eda72",
  381. "reference": "c0185ab7c75aab88762c5aae780b9d83b80eda72",
  382. "shasum": ""
  383. },
  384. "type": "bower-asset-library",
  385. "extra": {
  386. "bower-asset-main": "dist/jquery.js",
  387. "bower-asset-ignore": [
  388. "package.json"
  389. ]
  390. },
  391. "installation-source": "dist",
  392. "license": [
  393. "MIT"
  394. ],
  395. "keywords": [
  396. "browser",
  397. "javascript",
  398. "jquery",
  399. "library"
  400. ],
  401. "install-path": "../bower-asset/jquery"
  402. },
  403. {
  404. "name": "bower-asset/punycode",
  405. "version": "v1.3.2",
  406. "version_normalized": "1.3.2.0",
  407. "source": {
  408. "type": "git",
  409. "url": "https://github.com/bestiejs/punycode.js.git",
  410. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  411. },
  412. "dist": {
  413. "type": "zip",
  414. "url": "https://api.github.com/repos/bestiejs/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  415. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  416. "shasum": ""
  417. },
  418. "type": "bower-asset-library",
  419. "extra": {
  420. "bower-asset-main": "punycode.js",
  421. "bower-asset-ignore": [
  422. "coverage",
  423. "tests",
  424. ".*",
  425. "component.json",
  426. "Gruntfile.js",
  427. "node_modules",
  428. "package.json"
  429. ]
  430. },
  431. "installation-source": "dist",
  432. "install-path": "../bower-asset/punycode"
  433. },
  434. {
  435. "name": "bower-asset/typeahead.js",
  436. "version": "v0.11.1",
  437. "version_normalized": "0.11.1.0",
  438. "source": {
  439. "type": "git",
  440. "url": "https://github.com/twitter/typeahead.js.git",
  441. "reference": "588440f66559714280628a4f9799f0c4eb880a4a"
  442. },
  443. "dist": {
  444. "type": "zip",
  445. "url": "https://api.github.com/repos/twitter/typeahead.js/zipball/588440f66559714280628a4f9799f0c4eb880a4a",
  446. "reference": "588440f66559714280628a4f9799f0c4eb880a4a",
  447. "shasum": ""
  448. },
  449. "require": {
  450. "bower-asset/jquery": ">=1.7"
  451. },
  452. "require-dev": {
  453. "bower-asset/jasmine-ajax": "~1.3.1",
  454. "bower-asset/jasmine-jquery": "~1.5.2",
  455. "bower-asset/jquery": "~1.7"
  456. },
  457. "type": "bower-asset-library",
  458. "extra": {
  459. "bower-asset-main": "dist/typeahead.bundle.js"
  460. },
  461. "installation-source": "dist",
  462. "install-path": "../bower-asset/typeahead.js"
  463. },
  464. {
  465. "name": "bower-asset/yii2-pjax",
  466. "version": "2.0.8",
  467. "version_normalized": "2.0.8.0",
  468. "source": {
  469. "type": "git",
  470. "url": "https://github.com/yiisoft/jquery-pjax.git",
  471. "reference": "a9298d57da63d14a950f1b94366a864bc62264fb"
  472. },
  473. "dist": {
  474. "type": "zip",
  475. "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/a9298d57da63d14a950f1b94366a864bc62264fb",
  476. "reference": "a9298d57da63d14a950f1b94366a864bc62264fb"
  477. },
  478. "require": {
  479. "bower-asset/jquery": ">=1.8"
  480. },
  481. "type": "bower-asset",
  482. "installation-source": "source",
  483. "license": [
  484. "MIT"
  485. ],
  486. "install-path": "../bower-asset/yii2-pjax"
  487. },
  488. {
  489. "name": "cebe/markdown",
  490. "version": "dev-master",
  491. "version_normalized": "dev-master",
  492. "source": {
  493. "type": "git",
  494. "url": "https://github.com/cebe/markdown.git",
  495. "reference": "2b2461bed9e15305486319ee552bafca75d1cdaa"
  496. },
  497. "dist": {
  498. "type": "zip",
  499. "url": "https://api.github.com/repos/cebe/markdown/zipball/2b2461bed9e15305486319ee552bafca75d1cdaa",
  500. "reference": "2b2461bed9e15305486319ee552bafca75d1cdaa",
  501. "shasum": "",
  502. "mirrors": [
  503. {
  504. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  505. "preferred": true
  506. }
  507. ]
  508. },
  509. "require": {
  510. "lib-pcre": "*",
  511. "php": ">=5.4.0"
  512. },
  513. "require-dev": {
  514. "cebe/indent": "*",
  515. "facebook/xhprof": "*@dev",
  516. "phpunit/phpunit": "4.1.*"
  517. },
  518. "time": "2020-02-26T01:55:18+00:00",
  519. "default-branch": true,
  520. "bin": [
  521. "bin/markdown"
  522. ],
  523. "type": "library",
  524. "extra": {
  525. "branch-alias": {
  526. "dev-master": "1.2.x-dev"
  527. }
  528. },
  529. "installation-source": "dist",
  530. "autoload": {
  531. "psr-4": {
  532. "cebe\\markdown\\": ""
  533. }
  534. },
  535. "notification-url": "https://packagist.org/downloads/",
  536. "license": [
  537. "MIT"
  538. ],
  539. "authors": [
  540. {
  541. "name": "Carsten Brandt",
  542. "email": "mail@cebe.cc",
  543. "homepage": "http://cebe.cc/",
  544. "role": "Creator"
  545. }
  546. ],
  547. "description": "A super fast, highly extensible markdown parser for PHP",
  548. "homepage": "https://github.com/cebe/markdown#readme",
  549. "keywords": [
  550. "extensible",
  551. "fast",
  552. "gfm",
  553. "markdown",
  554. "markdown-extra"
  555. ],
  556. "support": {
  557. "issues": "https://github.com/cebe/markdown/issues",
  558. "source": "https://github.com/cebe/markdown"
  559. },
  560. "install-path": "../cebe/markdown"
  561. },
  562. {
  563. "name": "clagiordano/weblibs-configmanager",
  564. "version": "v1.1.0",
  565. "version_normalized": "1.1.0.0",
  566. "source": {
  567. "type": "git",
  568. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  569. "reference": "ecf584f5b3a27929175ff0abdba52f0131bef795"
  570. },
  571. "dist": {
  572. "type": "zip",
  573. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/ecf584f5b3a27929175ff0abdba52f0131bef795",
  574. "reference": "ecf584f5b3a27929175ff0abdba52f0131bef795",
  575. "shasum": "",
  576. "mirrors": [
  577. {
  578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  579. "preferred": true
  580. }
  581. ]
  582. },
  583. "require": {
  584. "php": ">=5.4"
  585. },
  586. "require-dev": {
  587. "clagiordano/phpunit-result-printer": "^1",
  588. "phpunit/phpunit": "^4.8"
  589. },
  590. "time": "2020-07-20T20:39:25+00:00",
  591. "type": "library",
  592. "installation-source": "dist",
  593. "autoload": {
  594. "psr-4": {
  595. "clagiordano\\weblibs\\configmanager\\": "src/"
  596. }
  597. },
  598. "notification-url": "https://packagist.org/downloads/",
  599. "license": [
  600. "LGPL-3.0-or-later"
  601. ],
  602. "authors": [
  603. {
  604. "name": "Claudio Giordano",
  605. "email": "claudio.giordano@autistici.org",
  606. "role": "Developer"
  607. }
  608. ],
  609. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  610. "keywords": [
  611. "clagiordano",
  612. "configuration",
  613. "manager",
  614. "tool",
  615. "weblibs"
  616. ],
  617. "install-path": "../clagiordano/weblibs-configmanager"
  618. },
  619. {
  620. "name": "danielstjules/stringy",
  621. "version": "3.1.0",
  622. "version_normalized": "3.1.0.0",
  623. "source": {
  624. "type": "git",
  625. "url": "https://github.com/danielstjules/Stringy.git",
  626. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  627. },
  628. "dist": {
  629. "type": "zip",
  630. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  631. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  632. "shasum": "",
  633. "mirrors": [
  634. {
  635. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  636. "preferred": true
  637. }
  638. ]
  639. },
  640. "require": {
  641. "php": ">=5.4.0",
  642. "symfony/polyfill-mbstring": "~1.1"
  643. },
  644. "require-dev": {
  645. "phpunit/phpunit": "~4.0"
  646. },
  647. "time": "2017-06-12T01:10:27+00:00",
  648. "type": "library",
  649. "installation-source": "dist",
  650. "autoload": {
  651. "psr-4": {
  652. "Stringy\\": "src/"
  653. },
  654. "files": [
  655. "src/Create.php"
  656. ]
  657. },
  658. "notification-url": "https://packagist.org/downloads/",
  659. "license": [
  660. "MIT"
  661. ],
  662. "authors": [
  663. {
  664. "name": "Daniel St. Jules",
  665. "email": "danielst.jules@gmail.com",
  666. "homepage": "http://www.danielstjules.com"
  667. }
  668. ],
  669. "description": "A string manipulation library with multibyte support",
  670. "homepage": "https://github.com/danielstjules/Stringy",
  671. "keywords": [
  672. "UTF",
  673. "helpers",
  674. "manipulation",
  675. "methods",
  676. "multibyte",
  677. "string",
  678. "utf-8",
  679. "utility",
  680. "utils"
  681. ],
  682. "install-path": "../danielstjules/stringy"
  683. },
  684. {
  685. "name": "ezyang/htmlpurifier",
  686. "version": "v4.18.0",
  687. "version_normalized": "4.18.0.0",
  688. "source": {
  689. "type": "git",
  690. "url": "https://github.com/ezyang/htmlpurifier.git",
  691. "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
  692. },
  693. "dist": {
  694. "type": "zip",
  695. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
  696. "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
  697. "shasum": "",
  698. "mirrors": [
  699. {
  700. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  701. "preferred": true
  702. }
  703. ]
  704. },
  705. "require": {
  706. "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 || ~8.4.0"
  707. },
  708. "require-dev": {
  709. "cerdic/css-tidy": "^1.7 || ^2.0",
  710. "simpletest/simpletest": "dev-master"
  711. },
  712. "suggest": {
  713. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  714. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  715. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  716. "ext-tidy": "Used for pretty-printing HTML"
  717. },
  718. "time": "2024-11-01T03:51:45+00:00",
  719. "type": "library",
  720. "installation-source": "dist",
  721. "autoload": {
  722. "files": [
  723. "library/HTMLPurifier.composer.php"
  724. ],
  725. "psr-0": {
  726. "HTMLPurifier": "library/"
  727. },
  728. "exclude-from-classmap": [
  729. "/library/HTMLPurifier/Language/"
  730. ]
  731. },
  732. "notification-url": "https://packagist.org/downloads/",
  733. "license": [
  734. "LGPL-2.1-or-later"
  735. ],
  736. "authors": [
  737. {
  738. "name": "Edward Z. Yang",
  739. "email": "admin@htmlpurifier.org",
  740. "homepage": "http://ezyang.com"
  741. }
  742. ],
  743. "description": "Standards compliant HTML filter written in PHP",
  744. "homepage": "http://htmlpurifier.org/",
  745. "keywords": [
  746. "html"
  747. ],
  748. "support": {
  749. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  750. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
  751. },
  752. "install-path": "../ezyang/htmlpurifier"
  753. },
  754. {
  755. "name": "fzaninotto/faker",
  756. "version": "dev-master",
  757. "version_normalized": "dev-master",
  758. "source": {
  759. "type": "git",
  760. "url": "https://github.com/fzaninotto/Faker.git",
  761. "reference": "fb218ada627f7c750c6e0e41cae486d2db48e911"
  762. },
  763. "dist": {
  764. "type": "zip",
  765. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fb218ada627f7c750c6e0e41cae486d2db48e911",
  766. "reference": "fb218ada627f7c750c6e0e41cae486d2db48e911",
  767. "shasum": "",
  768. "mirrors": [
  769. {
  770. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  771. "preferred": true
  772. }
  773. ]
  774. },
  775. "require": {
  776. "php": "^5.3.3 || ^7.0"
  777. },
  778. "require-dev": {
  779. "ext-intl": "*",
  780. "phpunit/phpunit": "^4.8.35 || ^5.7",
  781. "squizlabs/php_codesniffer": "^1.5"
  782. },
  783. "time": "2019-04-16T09:48:34+00:00",
  784. "type": "library",
  785. "extra": {
  786. "branch-alias": {
  787. "dev-master": "1.9-dev"
  788. }
  789. },
  790. "installation-source": "source",
  791. "autoload": {
  792. "psr-4": {
  793. "Faker\\": "src/Faker/"
  794. }
  795. },
  796. "notification-url": "https://packagist.org/downloads/",
  797. "license": [
  798. "MIT"
  799. ],
  800. "authors": [
  801. {
  802. "name": "François Zaninotto"
  803. }
  804. ],
  805. "description": "Faker is a PHP library that generates fake data for you.",
  806. "keywords": [
  807. "data",
  808. "faker",
  809. "fixtures"
  810. ],
  811. "abandoned": true,
  812. "install-path": "../fzaninotto/faker"
  813. },
  814. {
  815. "name": "getuilaboratory/getui-pushapi-php-client-v2",
  816. "version": "dev-master",
  817. "version_normalized": "dev-master",
  818. "source": {
  819. "type": "git",
  820. "url": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2.git",
  821. "reference": "255cc076624d049c0481d7172cd3c519ae7b07f6"
  822. },
  823. "dist": {
  824. "type": "zip",
  825. "url": "https://api.github.com/repos/GetuiLaboratory/getui-pushapi-php-client-v2/zipball/255cc076624d049c0481d7172cd3c519ae7b07f6",
  826. "reference": "255cc076624d049c0481d7172cd3c519ae7b07f6",
  827. "shasum": "",
  828. "mirrors": [
  829. {
  830. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  831. "preferred": true
  832. }
  833. ]
  834. },
  835. "time": "2021-06-21T03:22:42+00:00",
  836. "type": "library",
  837. "installation-source": "source",
  838. "autoload": {
  839. "classmap": [
  840. ""
  841. ]
  842. },
  843. "notification-url": "https://packagist.org/downloads/",
  844. "license": [
  845. "MIT"
  846. ],
  847. "authors": [
  848. {
  849. "name": "getui",
  850. "homepage": "https://www.getui.com/cn"
  851. }
  852. ],
  853. "description": "getui php client V2",
  854. "homepage": "https://www.getui.com/cn/",
  855. "keywords": [
  856. "GeTui",
  857. "GetuiLaboratory",
  858. "getui-pushapi-php-client",
  859. "getui-pushapi-php-client-v2",
  860. "pushapi"
  861. ],
  862. "install-path": "../getuilaboratory/getui-pushapi-php-client-v2"
  863. },
  864. {
  865. "name": "guzzlehttp/guzzle",
  866. "version": "6.5.x-dev",
  867. "version_normalized": "6.5.9999999.9999999-dev",
  868. "source": {
  869. "type": "git",
  870. "url": "https://github.com/guzzle/guzzle.git",
  871. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  872. },
  873. "dist": {
  874. "type": "zip",
  875. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  876. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  877. "shasum": "",
  878. "mirrors": [
  879. {
  880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  881. "preferred": true
  882. }
  883. ]
  884. },
  885. "require": {
  886. "ext-json": "*",
  887. "guzzlehttp/promises": "^1.0",
  888. "guzzlehttp/psr7": "^1.9",
  889. "php": ">=5.5",
  890. "symfony/polyfill-intl-idn": "^1.17"
  891. },
  892. "require-dev": {
  893. "ext-curl": "*",
  894. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  895. "psr/log": "^1.1"
  896. },
  897. "suggest": {
  898. "psr/log": "Required for using the Log middleware"
  899. },
  900. "time": "2022-06-20T22:16:07+00:00",
  901. "type": "library",
  902. "extra": {
  903. "branch-alias": {
  904. "dev-master": "6.5-dev"
  905. }
  906. },
  907. "installation-source": "dist",
  908. "autoload": {
  909. "files": [
  910. "src/functions_include.php"
  911. ],
  912. "psr-4": {
  913. "GuzzleHttp\\": "src/"
  914. }
  915. },
  916. "notification-url": "https://packagist.org/downloads/",
  917. "license": [
  918. "MIT"
  919. ],
  920. "authors": [
  921. {
  922. "name": "Graham Campbell",
  923. "email": "hello@gjcampbell.co.uk",
  924. "homepage": "https://github.com/GrahamCampbell"
  925. },
  926. {
  927. "name": "Michael Dowling",
  928. "email": "mtdowling@gmail.com",
  929. "homepage": "https://github.com/mtdowling"
  930. },
  931. {
  932. "name": "Jeremy Lindblom",
  933. "email": "jeremeamia@gmail.com",
  934. "homepage": "https://github.com/jeremeamia"
  935. },
  936. {
  937. "name": "George Mponos",
  938. "email": "gmponos@gmail.com",
  939. "homepage": "https://github.com/gmponos"
  940. },
  941. {
  942. "name": "Tobias Nyholm",
  943. "email": "tobias.nyholm@gmail.com",
  944. "homepage": "https://github.com/Nyholm"
  945. },
  946. {
  947. "name": "Márk Sági-Kazár",
  948. "email": "mark.sagikazar@gmail.com",
  949. "homepage": "https://github.com/sagikazarmark"
  950. },
  951. {
  952. "name": "Tobias Schultze",
  953. "email": "webmaster@tubo-world.de",
  954. "homepage": "https://github.com/Tobion"
  955. }
  956. ],
  957. "description": "Guzzle is a PHP HTTP client library",
  958. "homepage": "http://guzzlephp.org/",
  959. "keywords": [
  960. "client",
  961. "curl",
  962. "framework",
  963. "http",
  964. "http client",
  965. "rest",
  966. "web service"
  967. ],
  968. "support": {
  969. "issues": "https://github.com/guzzle/guzzle/issues",
  970. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  971. },
  972. "funding": [
  973. {
  974. "url": "https://github.com/GrahamCampbell",
  975. "type": "github"
  976. },
  977. {
  978. "url": "https://github.com/Nyholm",
  979. "type": "github"
  980. },
  981. {
  982. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  983. "type": "tidelift"
  984. }
  985. ],
  986. "install-path": "../guzzlehttp/guzzle"
  987. },
  988. {
  989. "name": "guzzlehttp/promises",
  990. "version": "dev-master",
  991. "version_normalized": "dev-master",
  992. "source": {
  993. "type": "git",
  994. "url": "https://github.com/guzzle/promises.git",
  995. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  996. },
  997. "dist": {
  998. "type": "zip",
  999. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1000. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1001. "shasum": "",
  1002. "mirrors": [
  1003. {
  1004. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1005. "preferred": true
  1006. }
  1007. ]
  1008. },
  1009. "require": {
  1010. "php": ">=5.5"
  1011. },
  1012. "require-dev": {
  1013. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1014. },
  1015. "time": "2021-10-22T20:56:57+00:00",
  1016. "default-branch": true,
  1017. "type": "library",
  1018. "extra": {
  1019. "branch-alias": {
  1020. "dev-master": "1.5-dev"
  1021. }
  1022. },
  1023. "installation-source": "dist",
  1024. "autoload": {
  1025. "files": [
  1026. "src/functions_include.php"
  1027. ],
  1028. "psr-4": {
  1029. "GuzzleHttp\\Promise\\": "src/"
  1030. }
  1031. },
  1032. "notification-url": "https://packagist.org/downloads/",
  1033. "license": [
  1034. "MIT"
  1035. ],
  1036. "authors": [
  1037. {
  1038. "name": "Graham Campbell",
  1039. "email": "hello@gjcampbell.co.uk",
  1040. "homepage": "https://github.com/GrahamCampbell"
  1041. },
  1042. {
  1043. "name": "Michael Dowling",
  1044. "email": "mtdowling@gmail.com",
  1045. "homepage": "https://github.com/mtdowling"
  1046. },
  1047. {
  1048. "name": "Tobias Nyholm",
  1049. "email": "tobias.nyholm@gmail.com",
  1050. "homepage": "https://github.com/Nyholm"
  1051. },
  1052. {
  1053. "name": "Tobias Schultze",
  1054. "email": "webmaster@tubo-world.de",
  1055. "homepage": "https://github.com/Tobion"
  1056. }
  1057. ],
  1058. "description": "Guzzle promises library",
  1059. "keywords": [
  1060. "promise"
  1061. ],
  1062. "support": {
  1063. "issues": "https://github.com/guzzle/promises/issues",
  1064. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  1065. },
  1066. "funding": [
  1067. {
  1068. "url": "https://github.com/GrahamCampbell",
  1069. "type": "github"
  1070. },
  1071. {
  1072. "url": "https://github.com/Nyholm",
  1073. "type": "github"
  1074. },
  1075. {
  1076. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1077. "type": "tidelift"
  1078. }
  1079. ],
  1080. "install-path": "../guzzlehttp/promises"
  1081. },
  1082. {
  1083. "name": "guzzlehttp/psr7",
  1084. "version": "1.x-dev",
  1085. "version_normalized": "1.9999999.9999999.9999999-dev",
  1086. "source": {
  1087. "type": "git",
  1088. "url": "https://github.com/guzzle/psr7.git",
  1089. "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318"
  1090. },
  1091. "dist": {
  1092. "type": "zip",
  1093. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e98e3e6d4f86621a9b75f623996e6bbdeb4b9318",
  1094. "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318",
  1095. "shasum": "",
  1096. "mirrors": [
  1097. {
  1098. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1099. "preferred": true
  1100. }
  1101. ]
  1102. },
  1103. "require": {
  1104. "php": ">=5.4.0",
  1105. "psr/http-message": "~1.0",
  1106. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1107. },
  1108. "provide": {
  1109. "psr/http-message-implementation": "1.0"
  1110. },
  1111. "require-dev": {
  1112. "ext-zlib": "*",
  1113. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1114. },
  1115. "suggest": {
  1116. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1117. },
  1118. "time": "2022-06-20T21:43:03+00:00",
  1119. "type": "library",
  1120. "extra": {
  1121. "branch-alias": {
  1122. "dev-master": "1.9-dev"
  1123. }
  1124. },
  1125. "installation-source": "dist",
  1126. "autoload": {
  1127. "files": [
  1128. "src/functions_include.php"
  1129. ],
  1130. "psr-4": {
  1131. "GuzzleHttp\\Psr7\\": "src/"
  1132. }
  1133. },
  1134. "notification-url": "https://packagist.org/downloads/",
  1135. "license": [
  1136. "MIT"
  1137. ],
  1138. "authors": [
  1139. {
  1140. "name": "Graham Campbell",
  1141. "email": "hello@gjcampbell.co.uk",
  1142. "homepage": "https://github.com/GrahamCampbell"
  1143. },
  1144. {
  1145. "name": "Michael Dowling",
  1146. "email": "mtdowling@gmail.com",
  1147. "homepage": "https://github.com/mtdowling"
  1148. },
  1149. {
  1150. "name": "George Mponos",
  1151. "email": "gmponos@gmail.com",
  1152. "homepage": "https://github.com/gmponos"
  1153. },
  1154. {
  1155. "name": "Tobias Nyholm",
  1156. "email": "tobias.nyholm@gmail.com",
  1157. "homepage": "https://github.com/Nyholm"
  1158. },
  1159. {
  1160. "name": "Márk Sági-Kazár",
  1161. "email": "mark.sagikazar@gmail.com",
  1162. "homepage": "https://github.com/sagikazarmark"
  1163. },
  1164. {
  1165. "name": "Tobias Schultze",
  1166. "email": "webmaster@tubo-world.de",
  1167. "homepage": "https://github.com/Tobion"
  1168. }
  1169. ],
  1170. "description": "PSR-7 message implementation that also provides common utility methods",
  1171. "keywords": [
  1172. "http",
  1173. "message",
  1174. "psr-7",
  1175. "request",
  1176. "response",
  1177. "stream",
  1178. "uri",
  1179. "url"
  1180. ],
  1181. "support": {
  1182. "issues": "https://github.com/guzzle/psr7/issues",
  1183. "source": "https://github.com/guzzle/psr7/tree/1.9.0"
  1184. },
  1185. "funding": [
  1186. {
  1187. "url": "https://github.com/GrahamCampbell",
  1188. "type": "github"
  1189. },
  1190. {
  1191. "url": "https://github.com/Nyholm",
  1192. "type": "github"
  1193. },
  1194. {
  1195. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1196. "type": "tidelift"
  1197. }
  1198. ],
  1199. "install-path": "../guzzlehttp/psr7"
  1200. },
  1201. {
  1202. "name": "hollisho/yii2-redis-pub-sub",
  1203. "version": "dev-master",
  1204. "version_normalized": "dev-master",
  1205. "source": {
  1206. "type": "git",
  1207. "url": "https://github.com/hollisho/yii2-redis-pub-sub.git",
  1208. "reference": "d19daa3c6928bb28aca180a8b77e952ef435d41b"
  1209. },
  1210. "dist": {
  1211. "type": "zip",
  1212. "url": "https://api.github.com/repos/hollisho/yii2-redis-pub-sub/zipball/d19daa3c6928bb28aca180a8b77e952ef435d41b",
  1213. "reference": "d19daa3c6928bb28aca180a8b77e952ef435d41b",
  1214. "shasum": "",
  1215. "mirrors": [
  1216. {
  1217. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1218. "preferred": true
  1219. }
  1220. ]
  1221. },
  1222. "require": {
  1223. "php": ">=5.4.0"
  1224. },
  1225. "time": "2018-11-22T10:56:17+00:00",
  1226. "type": "library",
  1227. "installation-source": "dist",
  1228. "autoload": {
  1229. "psr-4": {
  1230. "hollisho\\redis_pub_sub\\": "src/"
  1231. }
  1232. },
  1233. "notification-url": "https://packagist.org/downloads/",
  1234. "license": [
  1235. "MIT"
  1236. ],
  1237. "authors": [
  1238. {
  1239. "name": "Hollis Ho",
  1240. "email": "he_wenzhi@126.com"
  1241. }
  1242. ],
  1243. "description": "Yii2 Redis pub/sub(Publish,Subscribe)",
  1244. "install-path": "../hollisho/yii2-redis-pub-sub"
  1245. },
  1246. {
  1247. "name": "imagine/imagine",
  1248. "version": "1.2.3",
  1249. "version_normalized": "1.2.3.0",
  1250. "source": {
  1251. "type": "git",
  1252. "url": "https://github.com/php-imagine/Imagine.git",
  1253. "reference": "cb2361e5bb4410b681462d8e4f912bc5dabf84ab"
  1254. },
  1255. "dist": {
  1256. "type": "zip",
  1257. "url": "https://api.github.com/repos/php-imagine/Imagine/zipball/cb2361e5bb4410b681462d8e4f912bc5dabf84ab",
  1258. "reference": "cb2361e5bb4410b681462d8e4f912bc5dabf84ab",
  1259. "shasum": "",
  1260. "mirrors": [
  1261. {
  1262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1263. "preferred": true
  1264. }
  1265. ]
  1266. },
  1267. "require": {
  1268. "php": ">=5.3.2"
  1269. },
  1270. "require-dev": {
  1271. "friendsofphp/php-cs-fixer": "2.2.*",
  1272. "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.4"
  1273. },
  1274. "suggest": {
  1275. "ext-gd": "to use the GD implementation",
  1276. "ext-gmagick": "to use the Gmagick implementation",
  1277. "ext-imagick": "to use the Imagick implementation"
  1278. },
  1279. "time": "2019-12-04T09:55:33+00:00",
  1280. "type": "library",
  1281. "extra": {
  1282. "branch-alias": {
  1283. "dev-develop": "0.7-dev"
  1284. }
  1285. },
  1286. "installation-source": "dist",
  1287. "autoload": {
  1288. "psr-4": {
  1289. "Imagine\\": "src/"
  1290. }
  1291. },
  1292. "notification-url": "https://packagist.org/downloads/",
  1293. "license": [
  1294. "MIT"
  1295. ],
  1296. "authors": [
  1297. {
  1298. "name": "Bulat Shakirzyanov",
  1299. "email": "mallluhuct@gmail.com",
  1300. "homepage": "http://avalanche123.com"
  1301. }
  1302. ],
  1303. "description": "Image processing for PHP 5.3",
  1304. "homepage": "http://imagine.readthedocs.org/",
  1305. "keywords": [
  1306. "drawing",
  1307. "graphics",
  1308. "image manipulation",
  1309. "image processing"
  1310. ],
  1311. "install-path": "../imagine/imagine"
  1312. },
  1313. {
  1314. "name": "jzweb/open-weixin",
  1315. "version": "dev-master",
  1316. "version_normalized": "dev-master",
  1317. "source": {
  1318. "type": "git",
  1319. "url": "https://github.com/yidejia/jzweb-open-weixin.git",
  1320. "reference": "90283189b6bb5a75a0be3c1fe3f1c49fcfc9b2a7"
  1321. },
  1322. "dist": {
  1323. "type": "zip",
  1324. "url": "https://api.github.com/repos/yidejia/jzweb-open-weixin/zipball/90283189b6bb5a75a0be3c1fe3f1c49fcfc9b2a7",
  1325. "reference": "90283189b6bb5a75a0be3c1fe3f1c49fcfc9b2a7",
  1326. "shasum": "",
  1327. "mirrors": [
  1328. {
  1329. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1330. "preferred": true
  1331. }
  1332. ]
  1333. },
  1334. "require": {
  1335. "guzzlehttp/guzzle": "~6.0",
  1336. "php": ">=5.5.0"
  1337. },
  1338. "time": "2018-06-01T07:58:00+00:00",
  1339. "type": "library",
  1340. "installation-source": "source",
  1341. "autoload": {
  1342. "psr-4": {
  1343. "jzweb\\open\\weixin\\": "src/"
  1344. }
  1345. },
  1346. "notification-url": "https://packagist.org/downloads/",
  1347. "license": [
  1348. "MIT"
  1349. ],
  1350. "authors": [
  1351. {
  1352. "name": "liusongsen",
  1353. "email": "liusongsen@gmail.com"
  1354. }
  1355. ],
  1356. "description": "微信开放平台接口",
  1357. "install-path": "../jzweb/open-weixin"
  1358. },
  1359. {
  1360. "name": "lcobucci/jwt",
  1361. "version": "3.3.0",
  1362. "version_normalized": "3.3.0.0",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/lcobucci/jwt.git",
  1366. "reference": "8866a58fa866f6872f2a6ea0e04ad56480f0f440"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/8866a58fa866f6872f2a6ea0e04ad56480f0f440",
  1371. "reference": "8866a58fa866f6872f2a6ea0e04ad56480f0f440",
  1372. "shasum": "",
  1373. "mirrors": [
  1374. {
  1375. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1376. "preferred": true
  1377. }
  1378. ]
  1379. },
  1380. "require": {
  1381. "ext-mbstring": "*",
  1382. "ext-openssl": "*",
  1383. "php": "^5.6 || ^7.0"
  1384. },
  1385. "require-dev": {
  1386. "mikey179/vfsstream": "~1.5",
  1387. "phpmd/phpmd": "~2.2",
  1388. "phpunit/php-invoker": "~1.1",
  1389. "phpunit/phpunit": "^5.7 || ^7.3",
  1390. "squizlabs/php_codesniffer": "~2.3"
  1391. },
  1392. "time": "2019-05-22T09:44:23+00:00",
  1393. "type": "library",
  1394. "extra": {
  1395. "branch-alias": {
  1396. "dev-master": "3.1-dev"
  1397. }
  1398. },
  1399. "installation-source": "dist",
  1400. "autoload": {
  1401. "psr-4": {
  1402. "Lcobucci\\JWT\\": "src"
  1403. }
  1404. },
  1405. "notification-url": "https://packagist.org/downloads/",
  1406. "license": [
  1407. "BSD-3-Clause"
  1408. ],
  1409. "authors": [
  1410. {
  1411. "name": "Luís Otávio Cobucci Oblonczyk",
  1412. "email": "lcobucci@gmail.com",
  1413. "role": "Developer"
  1414. }
  1415. ],
  1416. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1417. "keywords": [
  1418. "JWS",
  1419. "jwt"
  1420. ],
  1421. "install-path": "../lcobucci/jwt"
  1422. },
  1423. {
  1424. "name": "linslin/yii2-curl",
  1425. "version": "1.0.11",
  1426. "version_normalized": "1.0.11.0",
  1427. "source": {
  1428. "type": "git",
  1429. "url": "https://github.com/linslin/Yii2-Curl.git",
  1430. "reference": "0384d175c594a6b76c4eeb91eb3804e24eb867b3"
  1431. },
  1432. "dist": {
  1433. "type": "zip",
  1434. "url": "https://api.github.com/repos/linslin/Yii2-Curl/zipball/0384d175c594a6b76c4eeb91eb3804e24eb867b3",
  1435. "reference": "0384d175c594a6b76c4eeb91eb3804e24eb867b3",
  1436. "shasum": "",
  1437. "mirrors": [
  1438. {
  1439. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1440. "preferred": true
  1441. }
  1442. ]
  1443. },
  1444. "require": {
  1445. "ext-curl": "*",
  1446. "yiisoft/yii2": "*"
  1447. },
  1448. "time": "2017-01-17T11:11:37+00:00",
  1449. "type": "yii2-extension",
  1450. "installation-source": "dist",
  1451. "autoload": {
  1452. "psr-4": {
  1453. "linslin\\yii2\\curl\\": ""
  1454. }
  1455. },
  1456. "notification-url": "https://packagist.org/downloads/",
  1457. "license": [
  1458. "MIT"
  1459. ],
  1460. "authors": [
  1461. {
  1462. "name": "Nils Gajsek",
  1463. "email": "info@linslin.org"
  1464. }
  1465. ],
  1466. "description": "Easy and nice cURL extension with RESTful support for Yii2",
  1467. "keywords": [
  1468. " curl",
  1469. "extension",
  1470. "restful",
  1471. "yii2"
  1472. ],
  1473. "install-path": "../linslin/yii2-curl"
  1474. },
  1475. {
  1476. "name": "mikemadisonweb/yii2-rabbitmq",
  1477. "version": "2.2.1",
  1478. "version_normalized": "2.2.1.0",
  1479. "source": {
  1480. "type": "git",
  1481. "url": "https://github.com/mikemadisonweb/yii2-rabbitmq.git",
  1482. "reference": "d5574048b813f26f57996b0a7819a879df5826e2"
  1483. },
  1484. "dist": {
  1485. "type": "zip",
  1486. "url": "https://api.github.com/repos/mikemadisonweb/yii2-rabbitmq/zipball/d5574048b813f26f57996b0a7819a879df5826e2",
  1487. "reference": "d5574048b813f26f57996b0a7819a879df5826e2",
  1488. "shasum": "",
  1489. "mirrors": [
  1490. {
  1491. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1492. "preferred": true
  1493. }
  1494. ]
  1495. },
  1496. "require": {
  1497. "php": "^7.0",
  1498. "php-amqplib/php-amqplib": "^2.9",
  1499. "yiisoft/yii2": "^2.0"
  1500. },
  1501. "require-dev": {
  1502. "php-coveralls/php-coveralls": "^1.0",
  1503. "phpunit/phpunit": "^6.4"
  1504. },
  1505. "time": "2019-04-23T12:48:21+00:00",
  1506. "type": "yii2-extension",
  1507. "extra": {
  1508. "bootstrap": "mikemadisonweb\\rabbitmq\\DependencyInjection"
  1509. },
  1510. "installation-source": "source",
  1511. "autoload": {
  1512. "psr-4": {
  1513. "mikemadisonweb\\rabbitmq\\": ""
  1514. }
  1515. },
  1516. "notification-url": "https://packagist.org/downloads/",
  1517. "license": [
  1518. "MIT"
  1519. ],
  1520. "authors": [
  1521. {
  1522. "name": "Mikhail Bakulin",
  1523. "email": "mikemadweb@gmail.com"
  1524. }
  1525. ],
  1526. "description": "Wrapper based on php-amqplib to incorporate messaging in your Yii2 application via RabbitMQ. Inspired by RabbitMqBundle for Symfony 2, really awesome package.",
  1527. "keywords": [
  1528. "AMQP",
  1529. "distributed systems",
  1530. "extension",
  1531. "message queue",
  1532. "rabbitmq",
  1533. "yii2"
  1534. ],
  1535. "install-path": "../mikemadisonweb/yii2-rabbitmq"
  1536. },
  1537. {
  1538. "name": "mtdowling/jmespath.php",
  1539. "version": "2.5.x-dev",
  1540. "version_normalized": "2.5.9999999.9999999-dev",
  1541. "source": {
  1542. "type": "git",
  1543. "url": "https://github.com/jmespath/jmespath.php.git",
  1544. "reference": "52168cb9472de06979613d365c7f1ab8798be895"
  1545. },
  1546. "dist": {
  1547. "type": "zip",
  1548. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/52168cb9472de06979613d365c7f1ab8798be895",
  1549. "reference": "52168cb9472de06979613d365c7f1ab8798be895",
  1550. "shasum": "",
  1551. "mirrors": [
  1552. {
  1553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1554. "preferred": true
  1555. }
  1556. ]
  1557. },
  1558. "require": {
  1559. "php": ">=5.4.0",
  1560. "symfony/polyfill-mbstring": "^1.4"
  1561. },
  1562. "require-dev": {
  1563. "composer/xdebug-handler": "^1.2",
  1564. "phpunit/phpunit": "^4.8.36|^7.5.15"
  1565. },
  1566. "time": "2019-12-30T18:03:34+00:00",
  1567. "bin": [
  1568. "bin/jp.php"
  1569. ],
  1570. "type": "library",
  1571. "extra": {
  1572. "branch-alias": {
  1573. "dev-master": "2.5-dev"
  1574. }
  1575. },
  1576. "installation-source": "source",
  1577. "autoload": {
  1578. "psr-4": {
  1579. "JmesPath\\": "src/"
  1580. },
  1581. "files": [
  1582. "src/JmesPath.php"
  1583. ]
  1584. },
  1585. "notification-url": "https://packagist.org/downloads/",
  1586. "license": [
  1587. "MIT"
  1588. ],
  1589. "authors": [
  1590. {
  1591. "name": "Michael Dowling",
  1592. "email": "mtdowling@gmail.com",
  1593. "homepage": "https://github.com/mtdowling"
  1594. }
  1595. ],
  1596. "description": "Declaratively specify how to extract elements from a JSON document",
  1597. "keywords": [
  1598. "json",
  1599. "jsonpath"
  1600. ],
  1601. "install-path": "../mtdowling/jmespath.php"
  1602. },
  1603. {
  1604. "name": "overtrue/chinese-calendar",
  1605. "version": "dev-master",
  1606. "version_normalized": "dev-master",
  1607. "source": {
  1608. "type": "git",
  1609. "url": "https://github.com/overtrue/chinese-calendar.git",
  1610. "reference": "8c88d876e6ab3cffd4b6316944a6c743e2fdf5f0"
  1611. },
  1612. "dist": {
  1613. "type": "zip",
  1614. "url": "https://api.github.com/repos/overtrue/chinese-calendar/zipball/8c88d876e6ab3cffd4b6316944a6c743e2fdf5f0",
  1615. "reference": "8c88d876e6ab3cffd4b6316944a6c743e2fdf5f0",
  1616. "shasum": "",
  1617. "mirrors": [
  1618. {
  1619. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1620. "preferred": true
  1621. }
  1622. ]
  1623. },
  1624. "require": {
  1625. "php": ">=5.5.9"
  1626. },
  1627. "require-dev": {
  1628. "phpunit/phpunit": "^6.0"
  1629. },
  1630. "time": "2023-01-29T01:59:28+00:00",
  1631. "default-branch": true,
  1632. "type": "library",
  1633. "installation-source": "dist",
  1634. "autoload": {
  1635. "psr-4": {
  1636. "Overtrue\\ChineseCalendar\\": "src"
  1637. }
  1638. },
  1639. "notification-url": "https://packagist.org/downloads/",
  1640. "license": [
  1641. "MIT"
  1642. ],
  1643. "authors": [
  1644. {
  1645. "name": "overtrue",
  1646. "email": "anzhengchao@gmail.com"
  1647. }
  1648. ],
  1649. "description": "中国农历转换与查询工具",
  1650. "keywords": [
  1651. "Chinese",
  1652. "calendar",
  1653. "lunar",
  1654. "lunar2solar",
  1655. "solar",
  1656. "solar2lunar"
  1657. ],
  1658. "support": {
  1659. "issues": "https://github.com/overtrue/chinese-calendar/issues",
  1660. "source": "https://github.com/overtrue/chinese-calendar/tree/master"
  1661. },
  1662. "install-path": "../overtrue/chinese-calendar"
  1663. },
  1664. {
  1665. "name": "overtrue/pinyin",
  1666. "version": "4.0.7",
  1667. "version_normalized": "4.0.7.0",
  1668. "source": {
  1669. "type": "git",
  1670. "url": "https://github.com/overtrue/pinyin.git",
  1671. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb"
  1672. },
  1673. "dist": {
  1674. "type": "zip",
  1675. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  1676. "reference": "083de406907d42df2e0feaaeb83f1a3c2e0095eb",
  1677. "shasum": "",
  1678. "mirrors": [
  1679. {
  1680. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1681. "preferred": true
  1682. }
  1683. ]
  1684. },
  1685. "require": {
  1686. "php": ">=7.1"
  1687. },
  1688. "require-dev": {
  1689. "brainmaestro/composer-git-hooks": "^2.7",
  1690. "friendsofphp/php-cs-fixer": "^2.16",
  1691. "phpunit/phpunit": "~8.0"
  1692. },
  1693. "time": "2021-04-16T11:13:48+00:00",
  1694. "type": "library",
  1695. "extra": {
  1696. "hooks": {
  1697. "pre-commit": [
  1698. "composer test",
  1699. "composer fix-style"
  1700. ],
  1701. "pre-push": [
  1702. "composer test",
  1703. "composer check-style"
  1704. ]
  1705. }
  1706. },
  1707. "installation-source": "dist",
  1708. "autoload": {
  1709. "psr-4": {
  1710. "Overtrue\\Pinyin\\": "src/"
  1711. },
  1712. "files": [
  1713. "src/const.php"
  1714. ]
  1715. },
  1716. "notification-url": "https://packagist.org/downloads/",
  1717. "license": [
  1718. "MIT"
  1719. ],
  1720. "authors": [
  1721. {
  1722. "name": "overtrue",
  1723. "email": "anzhengchao@gmail.com",
  1724. "homepage": "http://github.com/overtrue"
  1725. }
  1726. ],
  1727. "description": "Chinese to pinyin translator.",
  1728. "homepage": "https://github.com/overtrue/pinyin",
  1729. "keywords": [
  1730. "Chinese",
  1731. "Pinyin",
  1732. "cn2pinyin"
  1733. ],
  1734. "install-path": "../overtrue/pinyin"
  1735. },
  1736. {
  1737. "name": "paragonie/random_compat",
  1738. "version": "dev-master",
  1739. "version_normalized": "dev-master",
  1740. "source": {
  1741. "type": "git",
  1742. "url": "https://github.com/paragonie/random_compat.git",
  1743. "reference": "bf95de2af7feb426f91eee6c66d6ad8661c38e29"
  1744. },
  1745. "dist": {
  1746. "type": "zip",
  1747. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/bf95de2af7feb426f91eee6c66d6ad8661c38e29",
  1748. "reference": "bf95de2af7feb426f91eee6c66d6ad8661c38e29",
  1749. "shasum": "",
  1750. "mirrors": [
  1751. {
  1752. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1753. "preferred": true
  1754. }
  1755. ]
  1756. },
  1757. "require": {
  1758. "php": ">=5.2.0"
  1759. },
  1760. "require-dev": {
  1761. "phpunit/phpunit": "*"
  1762. },
  1763. "suggest": {
  1764. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1765. },
  1766. "time": "2024-09-10T09:24:43+00:00",
  1767. "default-branch": true,
  1768. "type": "library",
  1769. "installation-source": "dist",
  1770. "autoload": {
  1771. "files": [
  1772. "lib/random.php"
  1773. ]
  1774. },
  1775. "notification-url": "https://packagist.org/downloads/",
  1776. "license": [
  1777. "MIT"
  1778. ],
  1779. "authors": [
  1780. {
  1781. "name": "Paragon Initiative Enterprises",
  1782. "email": "security@paragonie.com",
  1783. "homepage": "https://paragonie.com"
  1784. }
  1785. ],
  1786. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1787. "keywords": [
  1788. "csprng",
  1789. "polyfill",
  1790. "pseudorandom",
  1791. "random"
  1792. ],
  1793. "support": {
  1794. "email": "info@paragonie.com",
  1795. "issues": "https://github.com/paragonie/random_compat/issues",
  1796. "source": "https://github.com/paragonie/random_compat"
  1797. },
  1798. "install-path": "../paragonie/random_compat"
  1799. },
  1800. {
  1801. "name": "php-amqplib/php-amqplib",
  1802. "version": "dev-master",
  1803. "version_normalized": "dev-master",
  1804. "source": {
  1805. "type": "git",
  1806. "url": "https://github.com/php-amqplib/php-amqplib.git",
  1807. "reference": "04e5366f032906d5f716890427e425e71307d3a8"
  1808. },
  1809. "dist": {
  1810. "type": "zip",
  1811. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/04e5366f032906d5f716890427e425e71307d3a8",
  1812. "reference": "04e5366f032906d5f716890427e425e71307d3a8",
  1813. "shasum": "",
  1814. "mirrors": [
  1815. {
  1816. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1817. "preferred": true
  1818. }
  1819. ]
  1820. },
  1821. "require": {
  1822. "ext-bcmath": "*",
  1823. "ext-sockets": "*",
  1824. "php": ">=5.6"
  1825. },
  1826. "replace": {
  1827. "videlalvaro/php-amqplib": "self.version"
  1828. },
  1829. "require-dev": {
  1830. "ext-curl": "*",
  1831. "nategood/httpful": "^0.2.20",
  1832. "phpdocumentor/phpdocumentor": "dev-master",
  1833. "phpunit/phpunit": "^5.7|^6.5|^7.0",
  1834. "squizlabs/php_codesniffer": "^2.5"
  1835. },
  1836. "time": "2019-08-08T18:28:18+00:00",
  1837. "type": "library",
  1838. "extra": {
  1839. "branch-alias": {
  1840. "dev-master": "2.10-dev"
  1841. }
  1842. },
  1843. "installation-source": "source",
  1844. "autoload": {
  1845. "psr-4": {
  1846. "PhpAmqpLib\\": "PhpAmqpLib/"
  1847. }
  1848. },
  1849. "notification-url": "https://packagist.org/downloads/",
  1850. "license": [
  1851. "LGPL-2.1-or-later"
  1852. ],
  1853. "authors": [
  1854. {
  1855. "name": "Alvaro Videla",
  1856. "role": "Original Maintainer"
  1857. },
  1858. {
  1859. "name": "John Kelly",
  1860. "role": "Maintainer",
  1861. "email": "johnmkelly86@gmail.com"
  1862. },
  1863. {
  1864. "name": "Raúl Araya",
  1865. "role": "Maintainer",
  1866. "email": "nubeiro@gmail.com"
  1867. },
  1868. {
  1869. "name": "Luke Bakken",
  1870. "role": "Maintainer",
  1871. "email": "luke@bakken.io"
  1872. }
  1873. ],
  1874. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  1875. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  1876. "keywords": [
  1877. "message",
  1878. "queue",
  1879. "rabbitmq"
  1880. ],
  1881. "install-path": "../php-amqplib/php-amqplib"
  1882. },
  1883. {
  1884. "name": "phpoffice/phpexcel",
  1885. "version": "1.8.x-dev",
  1886. "version_normalized": "1.8.9999999.9999999-dev",
  1887. "source": {
  1888. "type": "git",
  1889. "url": "https://github.com/PHPOffice/PHPExcel.git",
  1890. "reference": "39534e3dd376041d0d50a4714e73375bf45b692b"
  1891. },
  1892. "dist": {
  1893. "type": "zip",
  1894. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/39534e3dd376041d0d50a4714e73375bf45b692b",
  1895. "reference": "39534e3dd376041d0d50a4714e73375bf45b692b",
  1896. "shasum": "",
  1897. "mirrors": [
  1898. {
  1899. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1900. "preferred": true
  1901. }
  1902. ]
  1903. },
  1904. "require": {
  1905. "ext-mbstring": "*",
  1906. "ext-xml": "*",
  1907. "ext-xmlwriter": "*",
  1908. "php": "^5.2|^7.0"
  1909. },
  1910. "require-dev": {
  1911. "squizlabs/php_codesniffer": "2.*"
  1912. },
  1913. "time": "2019-01-02T01:38:47+00:00",
  1914. "type": "library",
  1915. "installation-source": "source",
  1916. "autoload": {
  1917. "psr-0": {
  1918. "PHPExcel": "Classes/"
  1919. }
  1920. },
  1921. "notification-url": "https://packagist.org/downloads/",
  1922. "license": [
  1923. "LGPL-2.1"
  1924. ],
  1925. "authors": [
  1926. {
  1927. "name": "Maarten Balliauw",
  1928. "homepage": "http://blog.maartenballiauw.be"
  1929. },
  1930. {
  1931. "name": "Erik Tilt"
  1932. },
  1933. {
  1934. "name": "Franck Lefevre",
  1935. "homepage": "http://rootslabs.net"
  1936. },
  1937. {
  1938. "name": "Mark Baker",
  1939. "homepage": "http://markbakeruk.net"
  1940. }
  1941. ],
  1942. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1943. "homepage": "https://github.com/PHPOffice/PHPExcel",
  1944. "keywords": [
  1945. "OpenXML",
  1946. "excel",
  1947. "php",
  1948. "spreadsheet",
  1949. "xls",
  1950. "xlsx"
  1951. ],
  1952. "abandoned": "phpoffice/phpspreadsheet",
  1953. "install-path": "../phpoffice/phpexcel"
  1954. },
  1955. {
  1956. "name": "phpoption/phpoption",
  1957. "version": "dev-master",
  1958. "version_normalized": "dev-master",
  1959. "source": {
  1960. "type": "git",
  1961. "url": "https://github.com/schmittjoh/php-option.git",
  1962. "reference": "2f6af23c6ff2bcd32ebd969e118e5a3b57d649dc"
  1963. },
  1964. "dist": {
  1965. "type": "zip",
  1966. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/2f6af23c6ff2bcd32ebd969e118e5a3b57d649dc",
  1967. "reference": "2f6af23c6ff2bcd32ebd969e118e5a3b57d649dc",
  1968. "shasum": "",
  1969. "mirrors": [
  1970. {
  1971. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1972. "preferred": true
  1973. }
  1974. ]
  1975. },
  1976. "require": {
  1977. "php": ">=5.3.0"
  1978. },
  1979. "require-dev": {
  1980. "phpunit/phpunit": "^4.7|^5.0"
  1981. },
  1982. "time": "2019-11-10T15:06:50+00:00",
  1983. "type": "library",
  1984. "extra": {
  1985. "branch-alias": {
  1986. "dev-master": "1.6-dev"
  1987. }
  1988. },
  1989. "installation-source": "source",
  1990. "autoload": {
  1991. "psr-0": {
  1992. "PhpOption\\": "src/"
  1993. }
  1994. },
  1995. "notification-url": "https://packagist.org/downloads/",
  1996. "license": [
  1997. "Apache-2.0"
  1998. ],
  1999. "authors": [
  2000. {
  2001. "name": "Johannes M. Schmitt",
  2002. "email": "schmittjoh@gmail.com"
  2003. }
  2004. ],
  2005. "description": "Option Type for PHP",
  2006. "keywords": [
  2007. "language",
  2008. "option",
  2009. "php",
  2010. "type"
  2011. ],
  2012. "install-path": "../phpoption/phpoption"
  2013. },
  2014. {
  2015. "name": "phpseclib/phpseclib",
  2016. "version": "2.0.x-dev",
  2017. "version_normalized": "2.0.9999999.9999999-dev",
  2018. "source": {
  2019. "type": "git",
  2020. "url": "https://github.com/phpseclib/phpseclib.git",
  2021. "reference": "c28b12137088c95e43d0b1adb35322ef47163a2d"
  2022. },
  2023. "dist": {
  2024. "type": "zip",
  2025. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/c28b12137088c95e43d0b1adb35322ef47163a2d",
  2026. "reference": "c28b12137088c95e43d0b1adb35322ef47163a2d",
  2027. "shasum": "",
  2028. "mirrors": [
  2029. {
  2030. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2031. "preferred": true
  2032. }
  2033. ]
  2034. },
  2035. "require": {
  2036. "php": ">=5.3.3"
  2037. },
  2038. "require-dev": {
  2039. "phing/phing": "~2.7",
  2040. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  2041. "squizlabs/php_codesniffer": "~2.0"
  2042. },
  2043. "suggest": {
  2044. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  2045. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  2046. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  2047. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations.",
  2048. "ext-xml": "Install the XML extension to load XML formatted public keys."
  2049. },
  2050. "time": "2025-05-30T13:51:00+00:00",
  2051. "type": "library",
  2052. "installation-source": "dist",
  2053. "autoload": {
  2054. "files": [
  2055. "phpseclib/bootstrap.php"
  2056. ],
  2057. "psr-4": {
  2058. "phpseclib\\": "phpseclib/"
  2059. }
  2060. },
  2061. "notification-url": "https://packagist.org/downloads/",
  2062. "license": [
  2063. "MIT"
  2064. ],
  2065. "authors": [
  2066. {
  2067. "name": "Jim Wigginton",
  2068. "email": "terrafrost@php.net",
  2069. "role": "Lead Developer"
  2070. },
  2071. {
  2072. "name": "Patrick Monnerat",
  2073. "email": "pm@datasphere.ch",
  2074. "role": "Developer"
  2075. },
  2076. {
  2077. "name": "Andreas Fischer",
  2078. "email": "bantu@phpbb.com",
  2079. "role": "Developer"
  2080. },
  2081. {
  2082. "name": "Hans-Jürgen Petrich",
  2083. "email": "petrich@tronic-media.com",
  2084. "role": "Developer"
  2085. },
  2086. {
  2087. "name": "Graham Campbell",
  2088. "email": "graham@alt-three.com",
  2089. "role": "Developer"
  2090. }
  2091. ],
  2092. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  2093. "homepage": "http://phpseclib.sourceforge.net",
  2094. "keywords": [
  2095. "BigInteger",
  2096. "aes",
  2097. "asn.1",
  2098. "asn1",
  2099. "blowfish",
  2100. "crypto",
  2101. "cryptography",
  2102. "encryption",
  2103. "rsa",
  2104. "security",
  2105. "sftp",
  2106. "signature",
  2107. "signing",
  2108. "ssh",
  2109. "twofish",
  2110. "x.509",
  2111. "x509"
  2112. ],
  2113. "support": {
  2114. "issues": "https://github.com/phpseclib/phpseclib/issues",
  2115. "source": "https://github.com/phpseclib/phpseclib/tree/2.0"
  2116. },
  2117. "funding": [
  2118. {
  2119. "url": "https://github.com/terrafrost",
  2120. "type": "github"
  2121. },
  2122. {
  2123. "url": "https://www.patreon.com/phpseclib",
  2124. "type": "patreon"
  2125. },
  2126. {
  2127. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  2128. "type": "tidelift"
  2129. }
  2130. ],
  2131. "install-path": "../phpseclib/phpseclib"
  2132. },
  2133. {
  2134. "name": "phpspec/php-diff",
  2135. "version": "dev-master",
  2136. "version_normalized": "dev-master",
  2137. "source": {
  2138. "type": "git",
  2139. "url": "https://github.com/phpspec/php-diff.git",
  2140. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a"
  2141. },
  2142. "dist": {
  2143. "type": "zip",
  2144. "url": "https://api.github.com/repos/phpspec/php-diff/zipball/0464787bfa7cd13576c5a1e318709768798bec6a",
  2145. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a",
  2146. "shasum": "",
  2147. "mirrors": [
  2148. {
  2149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2150. "preferred": true
  2151. }
  2152. ]
  2153. },
  2154. "time": "2016-04-07T12:29:16+00:00",
  2155. "type": "library",
  2156. "extra": {
  2157. "branch-alias": {
  2158. "dev-master": "1.0.x-dev"
  2159. }
  2160. },
  2161. "installation-source": "source",
  2162. "autoload": {
  2163. "psr-0": {
  2164. "Diff": "lib/"
  2165. }
  2166. },
  2167. "notification-url": "https://packagist.org/downloads/",
  2168. "license": [
  2169. "BSD-3-Clause"
  2170. ],
  2171. "authors": [
  2172. {
  2173. "name": "Chris Boulton",
  2174. "homepage": "http://github.com/chrisboulton"
  2175. }
  2176. ],
  2177. "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
  2178. "install-path": "../phpspec/php-diff"
  2179. },
  2180. {
  2181. "name": "picqer/php-barcode-generator",
  2182. "version": "v0.3",
  2183. "version_normalized": "0.3.0.0",
  2184. "source": {
  2185. "type": "git",
  2186. "url": "https://github.com/picqer/php-barcode-generator.git",
  2187. "reference": "2e4d5b1f7f04fdb348d0721ada65963dac6f0c0c"
  2188. },
  2189. "dist": {
  2190. "type": "zip",
  2191. "url": "https://api.github.com/repos/picqer/php-barcode-generator/zipball/2e4d5b1f7f04fdb348d0721ada65963dac6f0c0c",
  2192. "reference": "2e4d5b1f7f04fdb348d0721ada65963dac6f0c0c",
  2193. "shasum": "",
  2194. "mirrors": [
  2195. {
  2196. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2197. "preferred": true
  2198. }
  2199. ]
  2200. },
  2201. "require": {
  2202. "php": ">=5.4.0"
  2203. },
  2204. "require-dev": {
  2205. "phpunit/phpunit": "^5.3"
  2206. },
  2207. "time": "2019-01-12T09:29:34+00:00",
  2208. "type": "library",
  2209. "installation-source": "source",
  2210. "autoload": {
  2211. "psr-4": {
  2212. "Picqer\\Barcode\\": "src"
  2213. }
  2214. },
  2215. "notification-url": "https://packagist.org/downloads/",
  2216. "license": [
  2217. "LGPLv3"
  2218. ],
  2219. "authors": [
  2220. {
  2221. "name": "Nicola Asuni",
  2222. "email": "info@tecnick.com",
  2223. "homepage": "http://nicolaasuni.tecnick.com"
  2224. },
  2225. {
  2226. "name": "Casper Bakker",
  2227. "email": "info@picqer.com"
  2228. }
  2229. ],
  2230. "description": "An easy to use, non-bloated, barcode generator in PHP. Creates SVG, PNG, JPG and HTML images from the most used 1D barcode standards.",
  2231. "homepage": "http://github.com/picqer/php-barcode-generator",
  2232. "keywords": [
  2233. "CODABAR",
  2234. "Code11",
  2235. "Code93",
  2236. "EAN13",
  2237. "KIX",
  2238. "KIXCODE",
  2239. "MSI",
  2240. "POSTNET",
  2241. "Pharma",
  2242. "Standard 2 of 5",
  2243. "barcode",
  2244. "barcode generator",
  2245. "code128",
  2246. "code39",
  2247. "ean",
  2248. "html",
  2249. "jpeg",
  2250. "jpg",
  2251. "php",
  2252. "png",
  2253. "svg",
  2254. "upc"
  2255. ],
  2256. "install-path": "../picqer/php-barcode-generator"
  2257. },
  2258. {
  2259. "name": "psr/http-message",
  2260. "version": "1.0.1",
  2261. "version_normalized": "1.0.1.0",
  2262. "source": {
  2263. "type": "git",
  2264. "url": "https://github.com/php-fig/http-message.git",
  2265. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2266. },
  2267. "dist": {
  2268. "type": "zip",
  2269. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2270. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2271. "shasum": "",
  2272. "mirrors": [
  2273. {
  2274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2275. "preferred": true
  2276. }
  2277. ]
  2278. },
  2279. "require": {
  2280. "php": ">=5.3.0"
  2281. },
  2282. "time": "2016-08-06T14:39:51+00:00",
  2283. "type": "library",
  2284. "extra": {
  2285. "branch-alias": {
  2286. "dev-master": "1.0.x-dev"
  2287. }
  2288. },
  2289. "installation-source": "dist",
  2290. "autoload": {
  2291. "psr-4": {
  2292. "Psr\\Http\\Message\\": "src/"
  2293. }
  2294. },
  2295. "notification-url": "https://packagist.org/downloads/",
  2296. "license": [
  2297. "MIT"
  2298. ],
  2299. "authors": [
  2300. {
  2301. "name": "PHP-FIG",
  2302. "homepage": "http://www.php-fig.org/"
  2303. }
  2304. ],
  2305. "description": "Common interface for HTTP messages",
  2306. "homepage": "https://github.com/php-fig/http-message",
  2307. "keywords": [
  2308. "http",
  2309. "http-message",
  2310. "psr",
  2311. "psr-7",
  2312. "request",
  2313. "response"
  2314. ],
  2315. "support": {
  2316. "source": "https://github.com/php-fig/http-message/tree/master"
  2317. },
  2318. "install-path": "../psr/http-message"
  2319. },
  2320. {
  2321. "name": "pwf0112/wxcrypt",
  2322. "version": "dev-master",
  2323. "version_normalized": "dev-master",
  2324. "source": {
  2325. "type": "git",
  2326. "url": "https://github.com/pwf0112/wxcrypt.git",
  2327. "reference": "4756b3cfb9e4b812d42acc381582485f21abe831"
  2328. },
  2329. "dist": {
  2330. "type": "zip",
  2331. "url": "https://api.github.com/repos/pwf0112/wxcrypt/zipball/4756b3cfb9e4b812d42acc381582485f21abe831",
  2332. "reference": "4756b3cfb9e4b812d42acc381582485f21abe831",
  2333. "shasum": "",
  2334. "mirrors": [
  2335. {
  2336. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2337. "preferred": true
  2338. }
  2339. ]
  2340. },
  2341. "require": {
  2342. "php": ">=5.5.9"
  2343. },
  2344. "require-dev": {
  2345. "phpunit/phpunit": "~4.0"
  2346. },
  2347. "time": "2016-10-27T08:11:14+00:00",
  2348. "type": "library",
  2349. "installation-source": "source",
  2350. "autoload": {
  2351. "psr-4": {
  2352. "WxCrypt\\": "src/"
  2353. }
  2354. },
  2355. "notification-url": "https://packagist.org/downloads/",
  2356. "license": [
  2357. "MIT"
  2358. ],
  2359. "authors": [
  2360. {
  2361. "name": "彭未峰",
  2362. "email": "pwf0112@163.com"
  2363. }
  2364. ],
  2365. "description": "微信企业号接入文档Laravel改装",
  2366. "keywords": [
  2367. "企业号",
  2368. "回调接入",
  2369. "微信",
  2370. "消息加密",
  2371. "消息解密"
  2372. ],
  2373. "install-path": "../pwf0112/wxcrypt"
  2374. },
  2375. {
  2376. "name": "ralouphie/getallheaders",
  2377. "version": "3.0.3",
  2378. "version_normalized": "3.0.3.0",
  2379. "source": {
  2380. "type": "git",
  2381. "url": "https://github.com/ralouphie/getallheaders.git",
  2382. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2383. },
  2384. "dist": {
  2385. "type": "zip",
  2386. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2387. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2388. "shasum": "",
  2389. "mirrors": [
  2390. {
  2391. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2392. "preferred": true
  2393. }
  2394. ]
  2395. },
  2396. "require": {
  2397. "php": ">=5.6"
  2398. },
  2399. "require-dev": {
  2400. "php-coveralls/php-coveralls": "^2.1",
  2401. "phpunit/phpunit": "^5 || ^6.5"
  2402. },
  2403. "time": "2019-03-08T08:55:37+00:00",
  2404. "type": "library",
  2405. "installation-source": "dist",
  2406. "autoload": {
  2407. "files": [
  2408. "src/getallheaders.php"
  2409. ]
  2410. },
  2411. "notification-url": "https://packagist.org/downloads/",
  2412. "license": [
  2413. "MIT"
  2414. ],
  2415. "authors": [
  2416. {
  2417. "name": "Ralph Khattar",
  2418. "email": "ralph.khattar@gmail.com"
  2419. }
  2420. ],
  2421. "description": "A polyfill for getallheaders.",
  2422. "install-path": "../ralouphie/getallheaders"
  2423. },
  2424. {
  2425. "name": "shishaoqi/meituan-flash-purchase",
  2426. "version": "v1.1.0",
  2427. "version_normalized": "1.1.0.0",
  2428. "source": {
  2429. "type": "git",
  2430. "url": "https://github.com/shishaoqi/meituan-flash-purchase.git",
  2431. "reference": "23a571d7696b8a8bb3fc4922a26b1a7cc8e12afe"
  2432. },
  2433. "dist": {
  2434. "type": "zip",
  2435. "url": "https://api.github.com/repos/shishaoqi/meituan-flash-purchase/zipball/23a571d7696b8a8bb3fc4922a26b1a7cc8e12afe",
  2436. "reference": "23a571d7696b8a8bb3fc4922a26b1a7cc8e12afe",
  2437. "shasum": "",
  2438. "mirrors": [
  2439. {
  2440. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2441. "preferred": true
  2442. }
  2443. ]
  2444. },
  2445. "require": {
  2446. "guzzlehttp/guzzle": ">=6.5",
  2447. "php": ">=5.6"
  2448. },
  2449. "require-dev": {
  2450. "phpunit/phpunit": "^7.5.20"
  2451. },
  2452. "time": "2022-07-11T09:40:52+00:00",
  2453. "type": "library",
  2454. "installation-source": "dist",
  2455. "autoload": {
  2456. "psr-4": {
  2457. "Shishaoqi\\MeituanFlashPurchase\\": "src"
  2458. }
  2459. },
  2460. "notification-url": "https://packagist.org/downloads/",
  2461. "license": [
  2462. "MIT"
  2463. ],
  2464. "authors": [
  2465. {
  2466. "name": "shishaoqi",
  2467. "email": "shishaoqi0928@gmail.com"
  2468. }
  2469. ],
  2470. "description": "美团外卖开放平台PHP SDK,更准确的说是美团闪购 SDK",
  2471. "support": {
  2472. "source": "https://github.com/shishaoqi/meituan-flash-purchase/tree/v1.1.0"
  2473. },
  2474. "install-path": "../shishaoqi/meituan-flash-purchase"
  2475. },
  2476. {
  2477. "name": "swiftmailer/swiftmailer",
  2478. "version": "5.x-dev",
  2479. "version_normalized": "5.9999999.9999999.9999999-dev",
  2480. "source": {
  2481. "type": "git",
  2482. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2483. "reference": "181b89f18a90f8925ef805f950d47a7190e9b950"
  2484. },
  2485. "dist": {
  2486. "type": "zip",
  2487. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/181b89f18a90f8925ef805f950d47a7190e9b950",
  2488. "reference": "181b89f18a90f8925ef805f950d47a7190e9b950",
  2489. "shasum": "",
  2490. "mirrors": [
  2491. {
  2492. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2493. "preferred": true
  2494. }
  2495. ]
  2496. },
  2497. "require": {
  2498. "php": ">=5.3.3"
  2499. },
  2500. "require-dev": {
  2501. "mockery/mockery": "~0.9.1",
  2502. "symfony/phpunit-bridge": "~3.2"
  2503. },
  2504. "time": "2018-07-31T09:26:32+00:00",
  2505. "type": "library",
  2506. "extra": {
  2507. "branch-alias": {
  2508. "dev-master": "5.4-dev"
  2509. }
  2510. },
  2511. "installation-source": "source",
  2512. "autoload": {
  2513. "files": [
  2514. "lib/swift_required.php"
  2515. ]
  2516. },
  2517. "notification-url": "https://packagist.org/downloads/",
  2518. "license": [
  2519. "MIT"
  2520. ],
  2521. "authors": [
  2522. {
  2523. "name": "Chris Corbyn"
  2524. },
  2525. {
  2526. "name": "Fabien Potencier",
  2527. "email": "fabien@symfony.com"
  2528. }
  2529. ],
  2530. "description": "Swiftmailer, free feature-rich PHP mailer",
  2531. "homepage": "https://swiftmailer.symfony.com",
  2532. "keywords": [
  2533. "email",
  2534. "mail",
  2535. "mailer"
  2536. ],
  2537. "abandoned": "symfony/mailer",
  2538. "install-path": "../swiftmailer/swiftmailer"
  2539. },
  2540. {
  2541. "name": "symfony/polyfill-ctype",
  2542. "version": "dev-master",
  2543. "version_normalized": "dev-master",
  2544. "source": {
  2545. "type": "git",
  2546. "url": "https://github.com/symfony/polyfill-ctype.git",
  2547. "reference": "550ebaac289296ce228a706d0867afc34687e3f4"
  2548. },
  2549. "dist": {
  2550. "type": "zip",
  2551. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4",
  2552. "reference": "550ebaac289296ce228a706d0867afc34687e3f4",
  2553. "shasum": "",
  2554. "mirrors": [
  2555. {
  2556. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2557. "preferred": true
  2558. }
  2559. ]
  2560. },
  2561. "require": {
  2562. "php": ">=5.3.3"
  2563. },
  2564. "suggest": {
  2565. "ext-ctype": "For best performance"
  2566. },
  2567. "time": "2019-08-06T08:03:45+00:00",
  2568. "type": "library",
  2569. "extra": {
  2570. "branch-alias": {
  2571. "dev-master": "1.12-dev"
  2572. }
  2573. },
  2574. "installation-source": "source",
  2575. "autoload": {
  2576. "psr-4": {
  2577. "Symfony\\Polyfill\\Ctype\\": ""
  2578. },
  2579. "files": [
  2580. "bootstrap.php"
  2581. ]
  2582. },
  2583. "notification-url": "https://packagist.org/downloads/",
  2584. "license": [
  2585. "MIT"
  2586. ],
  2587. "authors": [
  2588. {
  2589. "name": "Gert de Pagter",
  2590. "email": "BackEndTea@gmail.com"
  2591. },
  2592. {
  2593. "name": "Symfony Community",
  2594. "homepage": "https://symfony.com/contributors"
  2595. }
  2596. ],
  2597. "description": "Symfony polyfill for ctype functions",
  2598. "homepage": "https://symfony.com",
  2599. "keywords": [
  2600. "compatibility",
  2601. "ctype",
  2602. "polyfill",
  2603. "portable"
  2604. ],
  2605. "install-path": "../symfony/polyfill-ctype"
  2606. },
  2607. {
  2608. "name": "symfony/polyfill-intl-idn",
  2609. "version": "dev-main",
  2610. "version_normalized": "dev-main",
  2611. "source": {
  2612. "type": "git",
  2613. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  2614. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
  2615. },
  2616. "dist": {
  2617. "type": "zip",
  2618. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  2619. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  2620. "shasum": "",
  2621. "mirrors": [
  2622. {
  2623. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2624. "preferred": true
  2625. }
  2626. ]
  2627. },
  2628. "require": {
  2629. "php": ">=7.1",
  2630. "symfony/polyfill-intl-normalizer": "^1.10",
  2631. "symfony/polyfill-php72": "^1.10"
  2632. },
  2633. "suggest": {
  2634. "ext-intl": "For best performance"
  2635. },
  2636. "time": "2022-05-24T11:49:31+00:00",
  2637. "default-branch": true,
  2638. "type": "library",
  2639. "extra": {
  2640. "branch-alias": {
  2641. "dev-main": "1.26-dev"
  2642. },
  2643. "thanks": {
  2644. "name": "symfony/polyfill",
  2645. "url": "https://github.com/symfony/polyfill"
  2646. }
  2647. },
  2648. "installation-source": "dist",
  2649. "autoload": {
  2650. "files": [
  2651. "bootstrap.php"
  2652. ],
  2653. "psr-4": {
  2654. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  2655. }
  2656. },
  2657. "notification-url": "https://packagist.org/downloads/",
  2658. "license": [
  2659. "MIT"
  2660. ],
  2661. "authors": [
  2662. {
  2663. "name": "Laurent Bassin",
  2664. "email": "laurent@bassin.info"
  2665. },
  2666. {
  2667. "name": "Trevor Rowbotham",
  2668. "email": "trevor.rowbotham@pm.me"
  2669. },
  2670. {
  2671. "name": "Symfony Community",
  2672. "homepage": "https://symfony.com/contributors"
  2673. }
  2674. ],
  2675. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  2676. "homepage": "https://symfony.com",
  2677. "keywords": [
  2678. "compatibility",
  2679. "idn",
  2680. "intl",
  2681. "polyfill",
  2682. "portable",
  2683. "shim"
  2684. ],
  2685. "support": {
  2686. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
  2687. },
  2688. "funding": [
  2689. {
  2690. "url": "https://symfony.com/sponsor",
  2691. "type": "custom"
  2692. },
  2693. {
  2694. "url": "https://github.com/fabpot",
  2695. "type": "github"
  2696. },
  2697. {
  2698. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2699. "type": "tidelift"
  2700. }
  2701. ],
  2702. "install-path": "../symfony/polyfill-intl-idn"
  2703. },
  2704. {
  2705. "name": "symfony/polyfill-intl-normalizer",
  2706. "version": "dev-main",
  2707. "version_normalized": "dev-main",
  2708. "source": {
  2709. "type": "git",
  2710. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  2711. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  2712. },
  2713. "dist": {
  2714. "type": "zip",
  2715. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  2716. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  2717. "shasum": "",
  2718. "mirrors": [
  2719. {
  2720. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2721. "preferred": true
  2722. }
  2723. ]
  2724. },
  2725. "require": {
  2726. "php": ">=7.1"
  2727. },
  2728. "suggest": {
  2729. "ext-intl": "For best performance"
  2730. },
  2731. "time": "2022-05-24T11:49:31+00:00",
  2732. "default-branch": true,
  2733. "type": "library",
  2734. "extra": {
  2735. "branch-alias": {
  2736. "dev-main": "1.26-dev"
  2737. },
  2738. "thanks": {
  2739. "name": "symfony/polyfill",
  2740. "url": "https://github.com/symfony/polyfill"
  2741. }
  2742. },
  2743. "installation-source": "dist",
  2744. "autoload": {
  2745. "files": [
  2746. "bootstrap.php"
  2747. ],
  2748. "psr-4": {
  2749. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  2750. },
  2751. "classmap": [
  2752. "Resources/stubs"
  2753. ]
  2754. },
  2755. "notification-url": "https://packagist.org/downloads/",
  2756. "license": [
  2757. "MIT"
  2758. ],
  2759. "authors": [
  2760. {
  2761. "name": "Nicolas Grekas",
  2762. "email": "p@tchwork.com"
  2763. },
  2764. {
  2765. "name": "Symfony Community",
  2766. "homepage": "https://symfony.com/contributors"
  2767. }
  2768. ],
  2769. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  2770. "homepage": "https://symfony.com",
  2771. "keywords": [
  2772. "compatibility",
  2773. "intl",
  2774. "normalizer",
  2775. "polyfill",
  2776. "portable",
  2777. "shim"
  2778. ],
  2779. "support": {
  2780. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  2781. },
  2782. "funding": [
  2783. {
  2784. "url": "https://symfony.com/sponsor",
  2785. "type": "custom"
  2786. },
  2787. {
  2788. "url": "https://github.com/fabpot",
  2789. "type": "github"
  2790. },
  2791. {
  2792. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2793. "type": "tidelift"
  2794. }
  2795. ],
  2796. "install-path": "../symfony/polyfill-intl-normalizer"
  2797. },
  2798. {
  2799. "name": "symfony/polyfill-mbstring",
  2800. "version": "dev-main",
  2801. "version_normalized": "dev-main",
  2802. "source": {
  2803. "type": "git",
  2804. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2805. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  2806. },
  2807. "dist": {
  2808. "type": "zip",
  2809. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  2810. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  2811. "shasum": "",
  2812. "mirrors": [
  2813. {
  2814. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2815. "preferred": true
  2816. }
  2817. ]
  2818. },
  2819. "require": {
  2820. "php": ">=7.1"
  2821. },
  2822. "provide": {
  2823. "ext-mbstring": "*"
  2824. },
  2825. "suggest": {
  2826. "ext-mbstring": "For best performance"
  2827. },
  2828. "time": "2022-05-24T11:49:31+00:00",
  2829. "default-branch": true,
  2830. "type": "library",
  2831. "extra": {
  2832. "branch-alias": {
  2833. "dev-main": "1.26-dev"
  2834. },
  2835. "thanks": {
  2836. "name": "symfony/polyfill",
  2837. "url": "https://github.com/symfony/polyfill"
  2838. }
  2839. },
  2840. "installation-source": "dist",
  2841. "autoload": {
  2842. "files": [
  2843. "bootstrap.php"
  2844. ],
  2845. "psr-4": {
  2846. "Symfony\\Polyfill\\Mbstring\\": ""
  2847. }
  2848. },
  2849. "notification-url": "https://packagist.org/downloads/",
  2850. "license": [
  2851. "MIT"
  2852. ],
  2853. "authors": [
  2854. {
  2855. "name": "Nicolas Grekas",
  2856. "email": "p@tchwork.com"
  2857. },
  2858. {
  2859. "name": "Symfony Community",
  2860. "homepage": "https://symfony.com/contributors"
  2861. }
  2862. ],
  2863. "description": "Symfony polyfill for the Mbstring extension",
  2864. "homepage": "https://symfony.com",
  2865. "keywords": [
  2866. "compatibility",
  2867. "mbstring",
  2868. "polyfill",
  2869. "portable",
  2870. "shim"
  2871. ],
  2872. "support": {
  2873. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  2874. },
  2875. "funding": [
  2876. {
  2877. "url": "https://symfony.com/sponsor",
  2878. "type": "custom"
  2879. },
  2880. {
  2881. "url": "https://github.com/fabpot",
  2882. "type": "github"
  2883. },
  2884. {
  2885. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2886. "type": "tidelift"
  2887. }
  2888. ],
  2889. "install-path": "../symfony/polyfill-mbstring"
  2890. },
  2891. {
  2892. "name": "symfony/polyfill-php72",
  2893. "version": "dev-main",
  2894. "version_normalized": "dev-main",
  2895. "source": {
  2896. "type": "git",
  2897. "url": "https://github.com/symfony/polyfill-php72.git",
  2898. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  2899. },
  2900. "dist": {
  2901. "type": "zip",
  2902. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  2903. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  2904. "shasum": "",
  2905. "mirrors": [
  2906. {
  2907. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2908. "preferred": true
  2909. }
  2910. ]
  2911. },
  2912. "require": {
  2913. "php": ">=7.1"
  2914. },
  2915. "time": "2022-05-24T11:49:31+00:00",
  2916. "default-branch": true,
  2917. "type": "library",
  2918. "extra": {
  2919. "branch-alias": {
  2920. "dev-main": "1.26-dev"
  2921. },
  2922. "thanks": {
  2923. "name": "symfony/polyfill",
  2924. "url": "https://github.com/symfony/polyfill"
  2925. }
  2926. },
  2927. "installation-source": "dist",
  2928. "autoload": {
  2929. "files": [
  2930. "bootstrap.php"
  2931. ],
  2932. "psr-4": {
  2933. "Symfony\\Polyfill\\Php72\\": ""
  2934. }
  2935. },
  2936. "notification-url": "https://packagist.org/downloads/",
  2937. "license": [
  2938. "MIT"
  2939. ],
  2940. "authors": [
  2941. {
  2942. "name": "Nicolas Grekas",
  2943. "email": "p@tchwork.com"
  2944. },
  2945. {
  2946. "name": "Symfony Community",
  2947. "homepage": "https://symfony.com/contributors"
  2948. }
  2949. ],
  2950. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2951. "homepage": "https://symfony.com",
  2952. "keywords": [
  2953. "compatibility",
  2954. "polyfill",
  2955. "portable",
  2956. "shim"
  2957. ],
  2958. "support": {
  2959. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  2960. },
  2961. "funding": [
  2962. {
  2963. "url": "https://symfony.com/sponsor",
  2964. "type": "custom"
  2965. },
  2966. {
  2967. "url": "https://github.com/fabpot",
  2968. "type": "github"
  2969. },
  2970. {
  2971. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2972. "type": "tidelift"
  2973. }
  2974. ],
  2975. "install-path": "../symfony/polyfill-php72"
  2976. },
  2977. {
  2978. "name": "symfony/var-dumper",
  2979. "version": "3.4.x-dev",
  2980. "version_normalized": "3.4.9999999.9999999-dev",
  2981. "source": {
  2982. "type": "git",
  2983. "url": "https://github.com/symfony/var-dumper.git",
  2984. "reference": "e463ad286cb2c56527c56bfff9e1aa7bb471c04e"
  2985. },
  2986. "dist": {
  2987. "type": "zip",
  2988. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e463ad286cb2c56527c56bfff9e1aa7bb471c04e",
  2989. "reference": "e463ad286cb2c56527c56bfff9e1aa7bb471c04e",
  2990. "shasum": "",
  2991. "mirrors": [
  2992. {
  2993. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2994. "preferred": true
  2995. }
  2996. ]
  2997. },
  2998. "require": {
  2999. "php": "^5.5.9|>=7.0.8",
  3000. "symfony/polyfill-mbstring": "~1.0"
  3001. },
  3002. "conflict": {
  3003. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  3004. },
  3005. "require-dev": {
  3006. "ext-iconv": "*",
  3007. "twig/twig": "~1.34|~2.4"
  3008. },
  3009. "suggest": {
  3010. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3011. "ext-intl": "To show region name in time zone dump",
  3012. "ext-symfony_debug": ""
  3013. },
  3014. "time": "2019-04-11T09:48:14+00:00",
  3015. "type": "library",
  3016. "extra": {
  3017. "branch-alias": {
  3018. "dev-master": "3.4-dev"
  3019. }
  3020. },
  3021. "installation-source": "source",
  3022. "autoload": {
  3023. "files": [
  3024. "Resources/functions/dump.php"
  3025. ],
  3026. "psr-4": {
  3027. "Symfony\\Component\\VarDumper\\": ""
  3028. },
  3029. "exclude-from-classmap": [
  3030. "/Tests/"
  3031. ]
  3032. },
  3033. "notification-url": "https://packagist.org/downloads/",
  3034. "license": [
  3035. "MIT"
  3036. ],
  3037. "authors": [
  3038. {
  3039. "name": "Nicolas Grekas",
  3040. "email": "p@tchwork.com"
  3041. },
  3042. {
  3043. "name": "Symfony Community",
  3044. "homepage": "https://symfony.com/contributors"
  3045. }
  3046. ],
  3047. "description": "Symfony mechanism for exploring and dumping PHP variables",
  3048. "homepage": "https://symfony.com",
  3049. "keywords": [
  3050. "debug",
  3051. "dump"
  3052. ],
  3053. "install-path": "../symfony/var-dumper"
  3054. },
  3055. {
  3056. "name": "vlucas/phpdotenv",
  3057. "version": "dev-master",
  3058. "version_normalized": "dev-master",
  3059. "source": {
  3060. "type": "git",
  3061. "url": "https://github.com/vlucas/phpdotenv.git",
  3062. "reference": "e9b60fd90d7cf5037d34f62e6ffc6e07e89eb2dc"
  3063. },
  3064. "dist": {
  3065. "type": "zip",
  3066. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/e9b60fd90d7cf5037d34f62e6ffc6e07e89eb2dc",
  3067. "reference": "e9b60fd90d7cf5037d34f62e6ffc6e07e89eb2dc",
  3068. "shasum": "",
  3069. "mirrors": [
  3070. {
  3071. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3072. "preferred": true
  3073. }
  3074. ]
  3075. },
  3076. "require": {
  3077. "php": "^5.4 || ^7.0",
  3078. "phpoption/phpoption": "^1.5",
  3079. "symfony/polyfill-ctype": "^1.9"
  3080. },
  3081. "require-dev": {
  3082. "phpunit/phpunit": "^4.8.35 || ^5.0 || ^6.0 || ^7.0"
  3083. },
  3084. "time": "2019-11-04T22:18:38+00:00",
  3085. "type": "library",
  3086. "extra": {
  3087. "branch-alias": {
  3088. "dev-master": "4.0-dev"
  3089. }
  3090. },
  3091. "installation-source": "source",
  3092. "autoload": {
  3093. "psr-4": {
  3094. "Dotenv\\": "src/"
  3095. }
  3096. },
  3097. "notification-url": "https://packagist.org/downloads/",
  3098. "license": [
  3099. "BSD-3-Clause"
  3100. ],
  3101. "authors": [
  3102. {
  3103. "name": "Graham Campbell",
  3104. "email": "graham@alt-three.com",
  3105. "homepage": "https://gjcampbell.co.uk/"
  3106. },
  3107. {
  3108. "name": "Vance Lucas",
  3109. "email": "vance@vancelucas.com",
  3110. "homepage": "https://vancelucas.com/"
  3111. }
  3112. ],
  3113. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  3114. "keywords": [
  3115. "dotenv",
  3116. "env",
  3117. "environment"
  3118. ],
  3119. "install-path": "../vlucas/phpdotenv"
  3120. },
  3121. {
  3122. "name": "workerman/gatewayclient",
  3123. "version": "v3.0.13",
  3124. "version_normalized": "3.0.13.0",
  3125. "source": {
  3126. "type": "git",
  3127. "url": "https://github.com/walkor/GatewayClient.git",
  3128. "reference": "6f4e76f38947be5cabca2c6fee367151f248d949"
  3129. },
  3130. "dist": {
  3131. "type": "zip",
  3132. "url": "https://api.github.com/repos/walkor/GatewayClient/zipball/6f4e76f38947be5cabca2c6fee367151f248d949",
  3133. "reference": "6f4e76f38947be5cabca2c6fee367151f248d949",
  3134. "shasum": "",
  3135. "mirrors": [
  3136. {
  3137. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3138. "preferred": true
  3139. }
  3140. ]
  3141. },
  3142. "time": "2018-09-15T03:03:50+00:00",
  3143. "type": "library",
  3144. "installation-source": "dist",
  3145. "autoload": {
  3146. "psr-4": {
  3147. "GatewayClient\\": "./"
  3148. }
  3149. },
  3150. "notification-url": "https://packagist.org/downloads/",
  3151. "license": [
  3152. "MIT"
  3153. ],
  3154. "homepage": "http://www.workerman.net",
  3155. "install-path": "../workerman/gatewayclient"
  3156. },
  3157. {
  3158. "name": "yiier/yii2-aliyun-oss",
  3159. "version": "dev-master",
  3160. "version_normalized": "dev-master",
  3161. "source": {
  3162. "type": "git",
  3163. "url": "https://github.com/yiier/yii2-aliyun-oss.git",
  3164. "reference": "ce1587cd58466cdf3a593f78532a210f2645f76a"
  3165. },
  3166. "dist": {
  3167. "type": "zip",
  3168. "url": "https://api.github.com/repos/yiier/yii2-aliyun-oss/zipball/ce1587cd58466cdf3a593f78532a210f2645f76a",
  3169. "reference": "ce1587cd58466cdf3a593f78532a210f2645f76a",
  3170. "shasum": "",
  3171. "mirrors": [
  3172. {
  3173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3174. "preferred": true
  3175. }
  3176. ]
  3177. },
  3178. "require": {
  3179. "aliyuncs/oss-sdk-php": ">2.0",
  3180. "yiisoft/yii2": "*"
  3181. },
  3182. "time": "2020-06-08T06:35:54+00:00",
  3183. "type": "yii2-extension",
  3184. "installation-source": "dist",
  3185. "autoload": {
  3186. "psr-4": {
  3187. "yiier\\AliyunOSS\\": ""
  3188. }
  3189. },
  3190. "notification-url": "https://packagist.org/downloads/",
  3191. "license": [
  3192. "BSD-3-Clause"
  3193. ],
  3194. "authors": [
  3195. {
  3196. "name": "forecho",
  3197. "email": "caizhenghai@gmail.com"
  3198. }
  3199. ],
  3200. "description": "Yii2 阿里云 OSS",
  3201. "keywords": [
  3202. "AliyunOSS",
  3203. "extension",
  3204. "oss",
  3205. "yii2"
  3206. ],
  3207. "install-path": "../yiier/yii2-aliyun-oss"
  3208. },
  3209. {
  3210. "name": "yiisoft/yii2",
  3211. "version": "2.0.49.x-dev",
  3212. "version_normalized": "2.0.49.9999999-dev",
  3213. "source": {
  3214. "type": "git",
  3215. "url": "https://github.com/yiisoft/yii2-framework.git",
  3216. "reference": "deec9b7330a09e06ab9e002c8718a8b478524dda"
  3217. },
  3218. "dist": {
  3219. "type": "zip",
  3220. "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/deec9b7330a09e06ab9e002c8718a8b478524dda",
  3221. "reference": "deec9b7330a09e06ab9e002c8718a8b478524dda",
  3222. "shasum": "",
  3223. "mirrors": [
  3224. {
  3225. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3226. "preferred": true
  3227. }
  3228. ]
  3229. },
  3230. "require": {
  3231. "bower-asset/inputmask": "~3.2.2 | ~3.3.5",
  3232. "bower-asset/jquery": "3.7.*@stable | 3.6.*@stable | 3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
  3233. "bower-asset/punycode": "1.3.*",
  3234. "bower-asset/yii2-pjax": "~2.0.1",
  3235. "cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
  3236. "ext-ctype": "*",
  3237. "ext-mbstring": "*",
  3238. "ezyang/htmlpurifier": "^4.6",
  3239. "lib-pcre": "*",
  3240. "paragonie/random_compat": ">=1",
  3241. "php": ">=5.4.0",
  3242. "yiisoft/yii2-composer": "~2.0.4"
  3243. },
  3244. "time": "2024-06-10T20:26:16+00:00",
  3245. "bin": [
  3246. "yii"
  3247. ],
  3248. "type": "library",
  3249. "extra": {
  3250. "branch-alias": {
  3251. "dev-master": "2.0.x-dev"
  3252. }
  3253. },
  3254. "installation-source": "dist",
  3255. "autoload": {
  3256. "psr-4": {
  3257. "yii\\": ""
  3258. }
  3259. },
  3260. "notification-url": "https://packagist.org/downloads/",
  3261. "license": [
  3262. "BSD-3-Clause"
  3263. ],
  3264. "authors": [
  3265. {
  3266. "name": "Qiang Xue",
  3267. "email": "qiang.xue@gmail.com",
  3268. "homepage": "https://www.yiiframework.com/",
  3269. "role": "Founder and project lead"
  3270. },
  3271. {
  3272. "name": "Alexander Makarov",
  3273. "email": "sam@rmcreative.ru",
  3274. "homepage": "https://rmcreative.ru/",
  3275. "role": "Core framework development"
  3276. },
  3277. {
  3278. "name": "Maurizio Domba",
  3279. "homepage": "http://mdomba.info/",
  3280. "role": "Core framework development"
  3281. },
  3282. {
  3283. "name": "Carsten Brandt",
  3284. "email": "mail@cebe.cc",
  3285. "homepage": "https://www.cebe.cc/",
  3286. "role": "Core framework development"
  3287. },
  3288. {
  3289. "name": "Timur Ruziev",
  3290. "email": "resurtm@gmail.com",
  3291. "homepage": "http://resurtm.com/",
  3292. "role": "Core framework development"
  3293. },
  3294. {
  3295. "name": "Paul Klimov",
  3296. "email": "klimov.paul@gmail.com",
  3297. "role": "Core framework development"
  3298. },
  3299. {
  3300. "name": "Dmitry Naumenko",
  3301. "email": "d.naumenko.a@gmail.com",
  3302. "role": "Core framework development"
  3303. },
  3304. {
  3305. "name": "Boudewijn Vahrmeijer",
  3306. "email": "info@dynasource.eu",
  3307. "homepage": "http://dynasource.eu",
  3308. "role": "Core framework development"
  3309. }
  3310. ],
  3311. "description": "Yii PHP Framework Version 2",
  3312. "homepage": "https://www.yiiframework.com/",
  3313. "keywords": [
  3314. "framework",
  3315. "yii2"
  3316. ],
  3317. "support": {
  3318. "forum": "https://forum.yiiframework.com/",
  3319. "irc": "ircs://irc.libera.chat:6697/yii",
  3320. "issues": "https://github.com/yiisoft/yii2/issues?state=open",
  3321. "source": "https://github.com/yiisoft/yii2",
  3322. "wiki": "https://www.yiiframework.com/wiki"
  3323. },
  3324. "funding": [
  3325. {
  3326. "url": "https://github.com/yiisoft",
  3327. "type": "github"
  3328. },
  3329. {
  3330. "url": "https://opencollective.com/yiisoft",
  3331. "type": "open_collective"
  3332. },
  3333. {
  3334. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2",
  3335. "type": "tidelift"
  3336. }
  3337. ],
  3338. "install-path": "../yiisoft/yii2"
  3339. },
  3340. {
  3341. "name": "yiisoft/yii2-bootstrap",
  3342. "version": "dev-master",
  3343. "version_normalized": "dev-master",
  3344. "source": {
  3345. "type": "git",
  3346. "url": "https://github.com/yiisoft/yii2-bootstrap.git",
  3347. "reference": "454552b7a90e2a803def733e4d1f612b850158da"
  3348. },
  3349. "dist": {
  3350. "type": "zip",
  3351. "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap/zipball/454552b7a90e2a803def733e4d1f612b850158da",
  3352. "reference": "454552b7a90e2a803def733e4d1f612b850158da",
  3353. "shasum": "",
  3354. "mirrors": [
  3355. {
  3356. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3357. "preferred": true
  3358. }
  3359. ]
  3360. },
  3361. "require": {
  3362. "bower-asset/bootstrap": "3.4.* | 3.3.* | 3.2.* | 3.1.*",
  3363. "yiisoft/yii2": "~2.0.6"
  3364. },
  3365. "require-dev": {
  3366. "phpunit/phpunit": "<7"
  3367. },
  3368. "time": "2019-02-17T13:23:56+00:00",
  3369. "type": "yii2-extension",
  3370. "extra": {
  3371. "branch-alias": {
  3372. "dev-master": "2.0.x-dev"
  3373. }
  3374. },
  3375. "installation-source": "source",
  3376. "autoload": {
  3377. "psr-4": {
  3378. "yii\\bootstrap\\": "src"
  3379. }
  3380. },
  3381. "notification-url": "https://packagist.org/downloads/",
  3382. "license": [
  3383. "BSD-3-Clause"
  3384. ],
  3385. "authors": [
  3386. {
  3387. "name": "Paul Klimov",
  3388. "email": "klimov.paul@gmail.com"
  3389. },
  3390. {
  3391. "name": "Alexander Makarov",
  3392. "email": "sam@rmcreative.ru",
  3393. "homepage": "http://rmcreative.ru/"
  3394. },
  3395. {
  3396. "name": "Antonio Ramirez",
  3397. "email": "amigo.cobos@gmail.com"
  3398. },
  3399. {
  3400. "name": "Qiang Xue",
  3401. "email": "qiang.xue@gmail.com",
  3402. "homepage": "http://www.yiiframework.com/"
  3403. }
  3404. ],
  3405. "description": "The Twitter Bootstrap extension for the Yii framework",
  3406. "keywords": [
  3407. "bootstrap",
  3408. "yii2"
  3409. ],
  3410. "install-path": "../yiisoft/yii2-bootstrap"
  3411. },
  3412. {
  3413. "name": "yiisoft/yii2-codeception",
  3414. "version": "dev-master",
  3415. "version_normalized": "dev-master",
  3416. "source": {
  3417. "type": "git",
  3418. "url": "https://github.com/yiisoft/yii2-codeception.git",
  3419. "reference": "c7d1509498c349179940a8d2b9c6d078e8054b90"
  3420. },
  3421. "dist": {
  3422. "type": "zip",
  3423. "url": "https://api.github.com/repos/yiisoft/yii2-codeception/zipball/c7d1509498c349179940a8d2b9c6d078e8054b90",
  3424. "reference": "c7d1509498c349179940a8d2b9c6d078e8054b90",
  3425. "shasum": "",
  3426. "mirrors": [
  3427. {
  3428. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3429. "preferred": true
  3430. }
  3431. ]
  3432. },
  3433. "require": {
  3434. "yiisoft/yii2": ">=2.0.4"
  3435. },
  3436. "time": "2018-04-26T18:21:40+00:00",
  3437. "type": "yii2-extension",
  3438. "extra": {
  3439. "branch-alias": {
  3440. "dev-master": "2.0.x-dev"
  3441. }
  3442. },
  3443. "installation-source": "source",
  3444. "autoload": {
  3445. "psr-4": {
  3446. "yii\\codeception\\": ""
  3447. }
  3448. },
  3449. "notification-url": "https://packagist.org/downloads/",
  3450. "license": [
  3451. "BSD-3-Clause"
  3452. ],
  3453. "authors": [
  3454. {
  3455. "name": "Mark Jebri",
  3456. "email": "mark.github@yandex.ru"
  3457. }
  3458. ],
  3459. "description": "The Codeception integration for the Yii framework",
  3460. "keywords": [
  3461. "codeception",
  3462. "yii2"
  3463. ],
  3464. "abandoned": "codeception/codeception",
  3465. "install-path": "../yiisoft/yii2-codeception"
  3466. },
  3467. {
  3468. "name": "yiisoft/yii2-composer",
  3469. "version": "dev-master",
  3470. "version_normalized": "dev-master",
  3471. "source": {
  3472. "type": "git",
  3473. "url": "https://github.com/yiisoft/yii2-composer.git",
  3474. "reference": "b684b01ecb119c8287721def726a0e24fec2fef2"
  3475. },
  3476. "dist": {
  3477. "type": "zip",
  3478. "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/b684b01ecb119c8287721def726a0e24fec2fef2",
  3479. "reference": "b684b01ecb119c8287721def726a0e24fec2fef2",
  3480. "shasum": "",
  3481. "mirrors": [
  3482. {
  3483. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3484. "preferred": true
  3485. }
  3486. ]
  3487. },
  3488. "require": {
  3489. "composer-plugin-api": "^1.0 | ^2.0"
  3490. },
  3491. "require-dev": {
  3492. "composer/composer": "^1.0 | ^2.0@dev",
  3493. "phpunit/phpunit": "<7"
  3494. },
  3495. "time": "2025-02-13T20:59:36+00:00",
  3496. "default-branch": true,
  3497. "type": "composer-plugin",
  3498. "extra": {
  3499. "class": "yii\\composer\\Plugin",
  3500. "branch-alias": {
  3501. "dev-master": "2.0.x-dev"
  3502. }
  3503. },
  3504. "installation-source": "source",
  3505. "autoload": {
  3506. "psr-4": {
  3507. "yii\\composer\\": ""
  3508. }
  3509. },
  3510. "notification-url": "https://packagist.org/downloads/",
  3511. "license": [
  3512. "BSD-3-Clause"
  3513. ],
  3514. "authors": [
  3515. {
  3516. "name": "Qiang Xue",
  3517. "email": "qiang.xue@gmail.com"
  3518. },
  3519. {
  3520. "name": "Carsten Brandt",
  3521. "email": "mail@cebe.cc"
  3522. }
  3523. ],
  3524. "description": "The composer plugin for Yii extension installer",
  3525. "keywords": [
  3526. "composer",
  3527. "extension installer",
  3528. "yii2"
  3529. ],
  3530. "support": {
  3531. "forum": "https://www.yiiframework.com/forum/",
  3532. "irc": "ircs://irc.libera.chat:6697/yii",
  3533. "issues": "https://github.com/yiisoft/yii2-composer/issues",
  3534. "source": "https://github.com/yiisoft/yii2-composer",
  3535. "wiki": "https://www.yiiframework.com/wiki/"
  3536. },
  3537. "funding": [
  3538. {
  3539. "url": "https://github.com/yiisoft",
  3540. "type": "github"
  3541. },
  3542. {
  3543. "url": "https://opencollective.com/yiisoft",
  3544. "type": "open_collective"
  3545. },
  3546. {
  3547. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-composer",
  3548. "type": "tidelift"
  3549. }
  3550. ],
  3551. "install-path": "../yiisoft/yii2-composer"
  3552. },
  3553. {
  3554. "name": "yiisoft/yii2-debug",
  3555. "version": "2.0.12",
  3556. "version_normalized": "2.0.12.0",
  3557. "source": {
  3558. "type": "git",
  3559. "url": "https://github.com/yiisoft/yii2-debug.git",
  3560. "reference": "93082f46d3568b4431a26f264e0d16a12c42bd50"
  3561. },
  3562. "dist": {
  3563. "type": "zip",
  3564. "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/93082f46d3568b4431a26f264e0d16a12c42bd50",
  3565. "reference": "93082f46d3568b4431a26f264e0d16a12c42bd50",
  3566. "shasum": "",
  3567. "mirrors": [
  3568. {
  3569. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3570. "preferred": true
  3571. }
  3572. ]
  3573. },
  3574. "require": {
  3575. "yiisoft/yii2": "~2.0.11",
  3576. "yiisoft/yii2-bootstrap": "~2.0.0"
  3577. },
  3578. "time": "2017-10-09T20:30:01+00:00",
  3579. "type": "yii2-extension",
  3580. "extra": {
  3581. "branch-alias": {
  3582. "dev-master": "2.0.x-dev"
  3583. }
  3584. },
  3585. "installation-source": "dist",
  3586. "autoload": {
  3587. "psr-4": {
  3588. "yii\\debug\\": ""
  3589. }
  3590. },
  3591. "notification-url": "https://packagist.org/downloads/",
  3592. "license": [
  3593. "BSD-3-Clause"
  3594. ],
  3595. "authors": [
  3596. {
  3597. "name": "Qiang Xue",
  3598. "email": "qiang.xue@gmail.com"
  3599. }
  3600. ],
  3601. "description": "The debugger extension for the Yii framework",
  3602. "keywords": [
  3603. "debug",
  3604. "debugger",
  3605. "yii2"
  3606. ],
  3607. "install-path": "../yiisoft/yii2-debug"
  3608. },
  3609. {
  3610. "name": "yiisoft/yii2-faker",
  3611. "version": "dev-master",
  3612. "version_normalized": "dev-master",
  3613. "source": {
  3614. "type": "git",
  3615. "url": "https://github.com/yiisoft/yii2-faker.git",
  3616. "reference": "2f548188b2961f097c08623214f5190e3cf2f1ac"
  3617. },
  3618. "dist": {
  3619. "type": "zip",
  3620. "url": "https://api.github.com/repos/yiisoft/yii2-faker/zipball/2f548188b2961f097c08623214f5190e3cf2f1ac",
  3621. "reference": "2f548188b2961f097c08623214f5190e3cf2f1ac",
  3622. "shasum": "",
  3623. "mirrors": [
  3624. {
  3625. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3626. "preferred": true
  3627. }
  3628. ]
  3629. },
  3630. "require": {
  3631. "fzaninotto/faker": "~1.4",
  3632. "yiisoft/yii2": "~2.0.0"
  3633. },
  3634. "require-dev": {
  3635. "phpunit/phpunit": "<7"
  3636. },
  3637. "time": "2019-02-18T10:24:17+00:00",
  3638. "type": "yii2-extension",
  3639. "extra": {
  3640. "branch-alias": {
  3641. "dev-master": "2.0.x-dev"
  3642. }
  3643. },
  3644. "installation-source": "source",
  3645. "autoload": {
  3646. "psr-4": {
  3647. "yii\\faker\\": "src"
  3648. }
  3649. },
  3650. "notification-url": "https://packagist.org/downloads/",
  3651. "license": [
  3652. "BSD-3-Clause"
  3653. ],
  3654. "authors": [
  3655. {
  3656. "name": "Mark Jebri",
  3657. "email": "mark.github@yandex.ru"
  3658. }
  3659. ],
  3660. "description": "Fixture generator. The Faker integration for the Yii framework.",
  3661. "keywords": [
  3662. "Fixture",
  3663. "faker",
  3664. "yii2"
  3665. ],
  3666. "install-path": "../yiisoft/yii2-faker"
  3667. },
  3668. {
  3669. "name": "yiisoft/yii2-gii",
  3670. "version": "2.0.5",
  3671. "version_normalized": "2.0.5.0",
  3672. "source": {
  3673. "type": "git",
  3674. "url": "https://github.com/yiisoft/yii2-gii.git",
  3675. "reference": "1bd6df6804ca077ec022587905a0d43eb286f507"
  3676. },
  3677. "dist": {
  3678. "type": "zip",
  3679. "url": "https://api.github.com/repos/yiisoft/yii2-gii/zipball/1bd6df6804ca077ec022587905a0d43eb286f507",
  3680. "reference": "1bd6df6804ca077ec022587905a0d43eb286f507",
  3681. "shasum": "",
  3682. "mirrors": [
  3683. {
  3684. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3685. "preferred": true
  3686. }
  3687. ]
  3688. },
  3689. "require": {
  3690. "bower-asset/typeahead.js": "0.10.* | ~0.11.0",
  3691. "phpspec/php-diff": ">=1.0.2",
  3692. "yiisoft/yii2": ">=2.0.4",
  3693. "yiisoft/yii2-bootstrap": "~2.0"
  3694. },
  3695. "time": "2016-03-18T14:09:46+00:00",
  3696. "type": "yii2-extension",
  3697. "extra": {
  3698. "branch-alias": {
  3699. "dev-master": "2.0.x-dev"
  3700. },
  3701. "asset-installer-paths": {
  3702. "npm-asset-library": "vendor/npm",
  3703. "bower-asset-library": "vendor/bower"
  3704. }
  3705. },
  3706. "installation-source": "dist",
  3707. "autoload": {
  3708. "psr-4": {
  3709. "yii\\gii\\": ""
  3710. }
  3711. },
  3712. "notification-url": "https://packagist.org/downloads/",
  3713. "license": [
  3714. "BSD-3-Clause"
  3715. ],
  3716. "authors": [
  3717. {
  3718. "name": "Qiang Xue",
  3719. "email": "qiang.xue@gmail.com"
  3720. }
  3721. ],
  3722. "description": "The Gii extension for the Yii framework",
  3723. "keywords": [
  3724. "code generator",
  3725. "gii",
  3726. "yii2"
  3727. ],
  3728. "install-path": "../yiisoft/yii2-gii"
  3729. },
  3730. {
  3731. "name": "yiisoft/yii2-imagine",
  3732. "version": "dev-master",
  3733. "version_normalized": "dev-master",
  3734. "source": {
  3735. "type": "git",
  3736. "url": "https://github.com/yiisoft/yii2-imagine.git",
  3737. "reference": "21d3df6f100410a40a163f849d311faf138b88b8"
  3738. },
  3739. "dist": {
  3740. "type": "zip",
  3741. "url": "https://api.github.com/repos/yiisoft/yii2-imagine/zipball/21d3df6f100410a40a163f849d311faf138b88b8",
  3742. "reference": "21d3df6f100410a40a163f849d311faf138b88b8",
  3743. "shasum": "",
  3744. "mirrors": [
  3745. {
  3746. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3747. "preferred": true
  3748. }
  3749. ]
  3750. },
  3751. "require": {
  3752. "imagine/imagine": "^0.6 | ^0.7 | ^1.0",
  3753. "yiisoft/yii2": "~2.0.0"
  3754. },
  3755. "require-dev": {
  3756. "phpunit/phpunit": "<7"
  3757. },
  3758. "time": "2019-12-06T16:12:49+00:00",
  3759. "type": "yii2-extension",
  3760. "extra": {
  3761. "branch-alias": {
  3762. "dev-master": "2.0.x-dev"
  3763. }
  3764. },
  3765. "installation-source": "dist",
  3766. "autoload": {
  3767. "psr-4": {
  3768. "yii\\imagine\\": "src"
  3769. }
  3770. },
  3771. "notification-url": "https://packagist.org/downloads/",
  3772. "license": [
  3773. "BSD-3-Clause"
  3774. ],
  3775. "authors": [
  3776. {
  3777. "name": "Antonio Ramirez",
  3778. "email": "amigo.cobos@gmail.com"
  3779. }
  3780. ],
  3781. "description": "The Imagine integration for the Yii framework",
  3782. "keywords": [
  3783. "helper",
  3784. "image",
  3785. "imagine",
  3786. "yii2"
  3787. ],
  3788. "install-path": "../yiisoft/yii2-imagine"
  3789. },
  3790. {
  3791. "name": "yiisoft/yii2-redis",
  3792. "version": "2.0.6",
  3793. "version_normalized": "2.0.6.0",
  3794. "source": {
  3795. "type": "git",
  3796. "url": "https://github.com/yiisoft/yii2-redis.git",
  3797. "reference": "5dc55d5187923219e9db86d149d56acf1f5a6ee8"
  3798. },
  3799. "dist": {
  3800. "type": "zip",
  3801. "url": "https://api.github.com/repos/yiisoft/yii2-redis/zipball/5dc55d5187923219e9db86d149d56acf1f5a6ee8",
  3802. "reference": "5dc55d5187923219e9db86d149d56acf1f5a6ee8",
  3803. "shasum": "",
  3804. "mirrors": [
  3805. {
  3806. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3807. "preferred": true
  3808. }
  3809. ]
  3810. },
  3811. "require": {
  3812. "yiisoft/yii2": "~2.0.11"
  3813. },
  3814. "time": "2017-04-05T13:42:11+00:00",
  3815. "type": "yii2-extension",
  3816. "extra": {
  3817. "branch-alias": {
  3818. "dev-master": "2.0.x-dev"
  3819. }
  3820. },
  3821. "installation-source": "dist",
  3822. "autoload": {
  3823. "psr-4": {
  3824. "yii\\redis\\": ""
  3825. }
  3826. },
  3827. "notification-url": "https://packagist.org/downloads/",
  3828. "license": [
  3829. "BSD-3-Clause"
  3830. ],
  3831. "authors": [
  3832. {
  3833. "name": "Carsten Brandt",
  3834. "email": "mail@cebe.cc"
  3835. }
  3836. ],
  3837. "description": "Redis Cache, Session and ActiveRecord for the Yii framework",
  3838. "keywords": [
  3839. "active-record",
  3840. "cache",
  3841. "redis",
  3842. "session",
  3843. "yii2"
  3844. ],
  3845. "install-path": "../yiisoft/yii2-redis"
  3846. },
  3847. {
  3848. "name": "yiisoft/yii2-swiftmailer",
  3849. "version": "2.0.7",
  3850. "version_normalized": "2.0.7.0",
  3851. "source": {
  3852. "type": "git",
  3853. "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
  3854. "reference": "8a03a62cbcb82e7697d3002eb43a8d2637f566ec"
  3855. },
  3856. "dist": {
  3857. "type": "zip",
  3858. "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/8a03a62cbcb82e7697d3002eb43a8d2637f566ec",
  3859. "reference": "8a03a62cbcb82e7697d3002eb43a8d2637f566ec",
  3860. "shasum": "",
  3861. "mirrors": [
  3862. {
  3863. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3864. "preferred": true
  3865. }
  3866. ]
  3867. },
  3868. "require": {
  3869. "swiftmailer/swiftmailer": "~5.0",
  3870. "yiisoft/yii2": "~2.0.4"
  3871. },
  3872. "time": "2017-05-01T08:29:00+00:00",
  3873. "type": "yii2-extension",
  3874. "extra": {
  3875. "branch-alias": {
  3876. "dev-master": "2.0.x-dev"
  3877. }
  3878. },
  3879. "installation-source": "dist",
  3880. "autoload": {
  3881. "psr-4": {
  3882. "yii\\swiftmailer\\": ""
  3883. }
  3884. },
  3885. "notification-url": "https://packagist.org/downloads/",
  3886. "license": [
  3887. "BSD-3-Clause"
  3888. ],
  3889. "authors": [
  3890. {
  3891. "name": "Paul Klimov",
  3892. "email": "klimov.paul@gmail.com"
  3893. }
  3894. ],
  3895. "description": "The SwiftMailer integration for the Yii framework",
  3896. "keywords": [
  3897. "email",
  3898. "mail",
  3899. "mailer",
  3900. "swift",
  3901. "swiftmailer",
  3902. "yii2"
  3903. ],
  3904. "install-path": "../yiisoft/yii2-swiftmailer"
  3905. }
  3906. ],
  3907. "dev": true,
  3908. "dev-package-names": [
  3909. "bower-asset/typeahead.js",
  3910. "fzaninotto/faker",
  3911. "phpspec/php-diff",
  3912. "symfony/var-dumper",
  3913. "yiisoft/yii2-codeception",
  3914. "yiisoft/yii2-debug",
  3915. "yiisoft/yii2-faker",
  3916. "yiisoft/yii2-gii"
  3917. ]
  3918. }