installed.json 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954
  1. {
  2. "packages": [
  3. {
  4. "name": "adbario/php-dot-notation",
  5. "version": "2.2.0",
  6. "version_normalized": "2.2.0.0",
  7. "source": {
  8. "type": "git",
  9. "url": "https://github.com/adbario/php-dot-notation.git",
  10. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e"
  11. },
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  15. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  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.0|^5.0|^6.0",
  30. "squizlabs/php_codesniffer": "^3.0"
  31. },
  32. "time": "2019-01-01T23:59:15+00:00",
  33. "type": "library",
  34. "installation-source": "dist",
  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. "support": {
  60. "issues": "https://github.com/adbario/php-dot-notation/issues",
  61. "source": "https://github.com/adbario/php-dot-notation/tree/2.x"
  62. },
  63. "install-path": "../adbario/php-dot-notation"
  64. },
  65. {
  66. "name": "alibabacloud/client",
  67. "version": "1.5.30",
  68. "version_normalized": "1.5.30.0",
  69. "source": {
  70. "type": "git",
  71. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  72. "reference": "1f497bb79835b84094318a70b672eb88260f2682"
  73. },
  74. "dist": {
  75. "type": "zip",
  76. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/1f497bb79835b84094318a70b672eb88260f2682",
  77. "reference": "1f497bb79835b84094318a70b672eb88260f2682",
  78. "shasum": "",
  79. "mirrors": [
  80. {
  81. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  82. "preferred": true
  83. }
  84. ]
  85. },
  86. "require": {
  87. "adbario/php-dot-notation": "^2.2",
  88. "clagiordano/weblibs-configmanager": "^1.0",
  89. "danielstjules/stringy": "^3.1",
  90. "ext-curl": "*",
  91. "ext-json": "*",
  92. "ext-libxml": "*",
  93. "ext-mbstring": "*",
  94. "ext-openssl": "*",
  95. "ext-simplexml": "*",
  96. "ext-xmlwriter": "*",
  97. "guzzlehttp/guzzle": "^6.3|^7.0",
  98. "mtdowling/jmespath.php": "^2.5",
  99. "php": ">=5.5"
  100. },
  101. "require-dev": {
  102. "composer/composer": "^1.8",
  103. "drupal/coder": "^8.3",
  104. "ext-dom": "*",
  105. "ext-pcre": "*",
  106. "ext-sockets": "*",
  107. "ext-spl": "*",
  108. "league/climate": "^3.2.4",
  109. "mikey179/vfsstream": "^1.6",
  110. "monolog/monolog": "^1.24",
  111. "phpunit/phpunit": "^5.7.27",
  112. "psr/cache": "^1.0",
  113. "symfony/dotenv": "^3.4",
  114. "symfony/var-dumper": "^3.4"
  115. },
  116. "suggest": {
  117. "ext-sockets": "To use client-side monitoring"
  118. },
  119. "time": "2021-03-22T09:07:59+00:00",
  120. "type": "library",
  121. "installation-source": "dist",
  122. "autoload": {
  123. "psr-4": {
  124. "AlibabaCloud\\Client\\": "src"
  125. },
  126. "files": [
  127. "src/Functions.php"
  128. ]
  129. },
  130. "notification-url": "https://packagist.org/downloads/",
  131. "license": [
  132. "Apache-2.0"
  133. ],
  134. "authors": [
  135. {
  136. "name": "Alibaba Cloud SDK",
  137. "email": "sdk-team@alibabacloud.com",
  138. "homepage": "http://www.alibabacloud.com"
  139. }
  140. ],
  141. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  142. "homepage": "https://www.alibabacloud.com/",
  143. "keywords": [
  144. "alibaba",
  145. "alibabacloud",
  146. "aliyun",
  147. "client",
  148. "cloud",
  149. "library",
  150. "sdk",
  151. "tool"
  152. ],
  153. "support": {
  154. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues",
  155. "source": "https://github.com/aliyun/openapi-sdk-php-client"
  156. },
  157. "install-path": "../alibabacloud/client"
  158. },
  159. {
  160. "name": "alibabacloud/dysmsapi",
  161. "version": "1.8.958",
  162. "version_normalized": "1.8.958.0",
  163. "source": {
  164. "type": "git",
  165. "url": "https://github.com/alibabacloud-sdk-php/dysmsapi.git",
  166. "reference": "1715a5e4c10520116cf531ed20c287ae488b3489"
  167. },
  168. "dist": {
  169. "type": "zip",
  170. "url": "https://api.github.com/repos/alibabacloud-sdk-php/dysmsapi/zipball/1715a5e4c10520116cf531ed20c287ae488b3489",
  171. "reference": "1715a5e4c10520116cf531ed20c287ae488b3489",
  172. "shasum": "",
  173. "mirrors": [
  174. {
  175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  176. "preferred": true
  177. }
  178. ]
  179. },
  180. "require": {
  181. "alibabacloud/client": "^1.5",
  182. "php": ">=5.5"
  183. },
  184. "time": "2019-12-02T02:17:52+00:00",
  185. "type": "library",
  186. "installation-source": "dist",
  187. "autoload": {
  188. "psr-4": {
  189. "AlibabaCloud\\Dysmsapi\\": ""
  190. }
  191. },
  192. "notification-url": "https://packagist.org/downloads/",
  193. "license": [
  194. "Apache-2.0"
  195. ],
  196. "authors": [
  197. {
  198. "name": "Alibaba Cloud SDK",
  199. "email": "sdk-team@alibabacloud.com",
  200. "homepage": "http://www.alibabacloud.com"
  201. }
  202. ],
  203. "description": "Alibaba Cloud Dysmsapi SDK for PHP",
  204. "homepage": "https://www.alibabacloud.com/",
  205. "keywords": [
  206. "alibaba",
  207. "alibabacloud",
  208. "aliyun",
  209. "cloud",
  210. "dysmsapi",
  211. "library",
  212. "sdk"
  213. ],
  214. "support": {
  215. "issues": "https://github.com/alibabacloud-sdk-php/dysmsapi/issues",
  216. "source": "https://github.com/alibabacloud-sdk-php/dysmsapi"
  217. },
  218. "install-path": "../alibabacloud/dysmsapi"
  219. },
  220. {
  221. "name": "alibabacloud/tea",
  222. "version": "3.1.21",
  223. "version_normalized": "3.1.21.0",
  224. "source": {
  225. "type": "git",
  226. "url": "https://github.com/aliyun/tea-php.git",
  227. "reference": "379faffe240ee97134cf3f796cb28059f9fb7fa9"
  228. },
  229. "dist": {
  230. "type": "zip",
  231. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/379faffe240ee97134cf3f796cb28059f9fb7fa9",
  232. "reference": "379faffe240ee97134cf3f796cb28059f9fb7fa9",
  233. "shasum": "",
  234. "mirrors": [
  235. {
  236. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  237. "preferred": true
  238. }
  239. ]
  240. },
  241. "require": {
  242. "adbario/php-dot-notation": "^2.2",
  243. "ext-curl": "*",
  244. "ext-json": "*",
  245. "ext-libxml": "*",
  246. "ext-mbstring": "*",
  247. "ext-openssl": "*",
  248. "ext-simplexml": "*",
  249. "ext-xmlwriter": "*",
  250. "guzzlehttp/guzzle": "^6.3|^7.0",
  251. "php": ">=5.5"
  252. },
  253. "require-dev": {
  254. "phpunit/phpunit": "*",
  255. "symfony/dotenv": "^3.4",
  256. "symfony/var-dumper": "^3.4"
  257. },
  258. "suggest": {
  259. "ext-sockets": "To use client-side monitoring"
  260. },
  261. "time": "2021-03-15T03:31:41+00:00",
  262. "type": "library",
  263. "installation-source": "dist",
  264. "autoload": {
  265. "psr-4": {
  266. "AlibabaCloud\\Tea\\": "src"
  267. }
  268. },
  269. "notification-url": "https://packagist.org/downloads/",
  270. "license": [
  271. "Apache-2.0"
  272. ],
  273. "authors": [
  274. {
  275. "name": "Alibaba Cloud SDK",
  276. "email": "sdk-team@alibabacloud.com",
  277. "homepage": "http://www.alibabacloud.com"
  278. }
  279. ],
  280. "description": "Client of Tea for PHP",
  281. "homepage": "https://www.alibabacloud.com/",
  282. "keywords": [
  283. "alibabacloud",
  284. "client",
  285. "cloud",
  286. "tea"
  287. ],
  288. "support": {
  289. "issues": "https://github.com/aliyun/tea-php/issues",
  290. "source": "https://github.com/aliyun/tea-php"
  291. },
  292. "install-path": "../alibabacloud/tea"
  293. },
  294. {
  295. "name": "alibabacloud/tea-fileform",
  296. "version": "0.3.4",
  297. "version_normalized": "0.3.4.0",
  298. "source": {
  299. "type": "git",
  300. "url": "https://github.com/alibabacloud-sdk-php/tea-fileform.git",
  301. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181"
  302. },
  303. "dist": {
  304. "type": "zip",
  305. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-fileform/zipball/4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  306. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  307. "shasum": "",
  308. "mirrors": [
  309. {
  310. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  311. "preferred": true
  312. }
  313. ]
  314. },
  315. "require": {
  316. "alibabacloud/tea": "^3.0",
  317. "php": ">5.5"
  318. },
  319. "require-dev": {
  320. "phpunit/phpunit": "^4.8.35|^5.4.3"
  321. },
  322. "time": "2020-12-01T07:24:35+00:00",
  323. "type": "library",
  324. "installation-source": "dist",
  325. "autoload": {
  326. "psr-4": {
  327. "AlibabaCloud\\Tea\\FileForm\\": "src"
  328. }
  329. },
  330. "notification-url": "https://packagist.org/downloads/",
  331. "license": [
  332. "Apache-2.0"
  333. ],
  334. "authors": [
  335. {
  336. "name": "Alibaba Cloud SDK",
  337. "email": "sdk-team@alibabacloud.com"
  338. }
  339. ],
  340. "description": "Alibaba Cloud Tea File Library for PHP",
  341. "support": {
  342. "issues": "https://github.com/alibabacloud-sdk-php/tea-fileform/issues",
  343. "source": "https://github.com/alibabacloud-sdk-php/tea-fileform/tree/0.3.4"
  344. },
  345. "install-path": "../alibabacloud/tea-fileform"
  346. },
  347. {
  348. "name": "alipaysdk/easysdk",
  349. "version": "2.2.0",
  350. "version_normalized": "2.2.0.0",
  351. "source": {
  352. "type": "git",
  353. "url": "https://github.com/alipay/alipay-easysdk.git",
  354. "reference": "7a1cfa83c7e140bded957498ea072c77611e6480"
  355. },
  356. "dist": {
  357. "type": "zip",
  358. "url": "https://api.github.com/repos/alipay/alipay-easysdk/zipball/7a1cfa83c7e140bded957498ea072c77611e6480",
  359. "reference": "7a1cfa83c7e140bded957498ea072c77611e6480",
  360. "shasum": "",
  361. "mirrors": [
  362. {
  363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  364. "preferred": true
  365. }
  366. ]
  367. },
  368. "require": {
  369. "adbario/php-dot-notation": "^2.2",
  370. "alibabacloud/tea": "^3.1",
  371. "alibabacloud/tea-fileform": "^0.3.2",
  372. "danielstjules/stringy": "^3.1",
  373. "ext-ctype": "*",
  374. "ext-curl": "*",
  375. "ext-dom": "*",
  376. "ext-fileinfo": "*",
  377. "ext-json": "*",
  378. "ext-libxml": "*",
  379. "ext-mbstring": "*",
  380. "ext-openssl": "*",
  381. "ext-simplexml": "*",
  382. "ext-xmlwriter": "*",
  383. "guzzlehttp/guzzle": ">=6.3",
  384. "mtdowling/jmespath.php": "^2.4",
  385. "php": ">=7.0",
  386. "pimple/pimple": "^3.0",
  387. "psr/log": "^1.1",
  388. "songshenzong/support": "^2.0",
  389. "xin/container": "^2.0.1"
  390. },
  391. "require-dev": {
  392. "phpunit/phpunit": "^7.5"
  393. },
  394. "time": "2021-01-19T07:30:32+00:00",
  395. "type": "library",
  396. "installation-source": "dist",
  397. "autoload": {
  398. "psr-4": {
  399. "Alipay\\EasySDK\\": "php/src/"
  400. }
  401. },
  402. "notification-url": "https://packagist.org/downloads/",
  403. "license": [
  404. "Apache-2.0"
  405. ],
  406. "authors": [
  407. {
  408. "name": "junying.wjy",
  409. "email": "junying.wjy@antfin.com"
  410. }
  411. ],
  412. "description": "支付宝官方 Alipay Easy SDK",
  413. "support": {
  414. "issues": "https://github.com/alipay/alipay-easysdk/issues",
  415. "source": "https://github.com/alipay/alipay-easysdk/tree/v2.2.0"
  416. },
  417. "install-path": "../alipaysdk/easysdk"
  418. },
  419. {
  420. "name": "aliyuncs/oss-sdk-php",
  421. "version": "v2.3.0",
  422. "version_normalized": "2.3.0.0",
  423. "source": {
  424. "type": "git",
  425. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  426. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8"
  427. },
  428. "dist": {
  429. "type": "zip",
  430. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/e69f57916678458642ac9d2fd341ae78a56996c8",
  431. "reference": "e69f57916678458642ac9d2fd341ae78a56996c8",
  432. "shasum": "",
  433. "mirrors": [
  434. {
  435. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  436. "preferred": true
  437. }
  438. ]
  439. },
  440. "require": {
  441. "php": ">=5.3"
  442. },
  443. "require-dev": {
  444. "phpunit/phpunit": "~4.0",
  445. "satooshi/php-coveralls": "~1.0"
  446. },
  447. "time": "2018-01-08T06:59:35+00:00",
  448. "type": "library",
  449. "installation-source": "dist",
  450. "autoload": {
  451. "psr-4": {
  452. "OSS\\": "src/OSS"
  453. }
  454. },
  455. "notification-url": "https://packagist.org/downloads/",
  456. "license": [
  457. "MIT"
  458. ],
  459. "authors": [
  460. {
  461. "name": "Aliyuncs",
  462. "homepage": "http://www.aliyun.com"
  463. }
  464. ],
  465. "description": "Aliyun OSS SDK for PHP",
  466. "homepage": "http://www.aliyun.com/product/oss/",
  467. "install-path": "../aliyuncs/oss-sdk-php"
  468. },
  469. {
  470. "name": "clagiordano/weblibs-configmanager",
  471. "version": "v1.1.0",
  472. "version_normalized": "1.1.0.0",
  473. "source": {
  474. "type": "git",
  475. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  476. "reference": "ecf584f5b3a27929175ff0abdba52f0131bef795"
  477. },
  478. "dist": {
  479. "type": "zip",
  480. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/ecf584f5b3a27929175ff0abdba52f0131bef795",
  481. "reference": "ecf584f5b3a27929175ff0abdba52f0131bef795",
  482. "shasum": "",
  483. "mirrors": [
  484. {
  485. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  486. "preferred": true
  487. }
  488. ]
  489. },
  490. "require": {
  491. "php": ">=5.4"
  492. },
  493. "require-dev": {
  494. "clagiordano/phpunit-result-printer": "^1",
  495. "phpunit/phpunit": "^4.8"
  496. },
  497. "time": "2020-07-20T20:39:25+00:00",
  498. "type": "library",
  499. "installation-source": "dist",
  500. "autoload": {
  501. "psr-4": {
  502. "clagiordano\\weblibs\\configmanager\\": "src/"
  503. }
  504. },
  505. "notification-url": "https://packagist.org/downloads/",
  506. "license": [
  507. "LGPL-3.0-or-later"
  508. ],
  509. "authors": [
  510. {
  511. "name": "Claudio Giordano",
  512. "email": "claudio.giordano@autistici.org",
  513. "role": "Developer"
  514. }
  515. ],
  516. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  517. "keywords": [
  518. "clagiordano",
  519. "configuration",
  520. "manager",
  521. "tool",
  522. "weblibs"
  523. ],
  524. "support": {
  525. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  526. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.1.0"
  527. },
  528. "install-path": "../clagiordano/weblibs-configmanager"
  529. },
  530. {
  531. "name": "danielstjules/stringy",
  532. "version": "3.1.0",
  533. "version_normalized": "3.1.0.0",
  534. "source": {
  535. "type": "git",
  536. "url": "https://github.com/danielstjules/Stringy.git",
  537. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e"
  538. },
  539. "dist": {
  540. "type": "zip",
  541. "url": "https://api.github.com/repos/danielstjules/Stringy/zipball/df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  542. "reference": "df24ab62d2d8213bbbe88cc36fc35a4503b4bd7e",
  543. "shasum": "",
  544. "mirrors": [
  545. {
  546. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  547. "preferred": true
  548. }
  549. ]
  550. },
  551. "require": {
  552. "php": ">=5.4.0",
  553. "symfony/polyfill-mbstring": "~1.1"
  554. },
  555. "require-dev": {
  556. "phpunit/phpunit": "~4.0"
  557. },
  558. "time": "2017-06-12T01:10:27+00:00",
  559. "type": "library",
  560. "installation-source": "dist",
  561. "autoload": {
  562. "psr-4": {
  563. "Stringy\\": "src/"
  564. },
  565. "files": [
  566. "src/Create.php"
  567. ]
  568. },
  569. "notification-url": "https://packagist.org/downloads/",
  570. "license": [
  571. "MIT"
  572. ],
  573. "authors": [
  574. {
  575. "name": "Daniel St. Jules",
  576. "email": "danielst.jules@gmail.com",
  577. "homepage": "http://www.danielstjules.com"
  578. }
  579. ],
  580. "description": "A string manipulation library with multibyte support",
  581. "homepage": "https://github.com/danielstjules/Stringy",
  582. "keywords": [
  583. "UTF",
  584. "helpers",
  585. "manipulation",
  586. "methods",
  587. "multibyte",
  588. "string",
  589. "utf-8",
  590. "utility",
  591. "utils"
  592. ],
  593. "support": {
  594. "issues": "https://github.com/danielstjules/Stringy/issues",
  595. "source": "https://github.com/danielstjules/Stringy"
  596. },
  597. "install-path": "../danielstjules/stringy"
  598. },
  599. {
  600. "name": "dh2y/think-qrcode",
  601. "version": "2.0",
  602. "version_normalized": "2.0.0.0",
  603. "source": {
  604. "type": "git",
  605. "url": "https://github.com/cinaofdai/think-qrcode.git",
  606. "reference": "977d032afa27b1852f5fc5441fad2497f6db7ff5"
  607. },
  608. "dist": {
  609. "type": "zip",
  610. "url": "https://api.github.com/repos/cinaofdai/think-qrcode/zipball/977d032afa27b1852f5fc5441fad2497f6db7ff5",
  611. "reference": "977d032afa27b1852f5fc5441fad2497f6db7ff5",
  612. "shasum": "",
  613. "mirrors": [
  614. {
  615. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  616. "preferred": true
  617. }
  618. ]
  619. },
  620. "require": {
  621. "php": ">=5.4.0"
  622. },
  623. "time": "2019-07-10T02:57:29+00:00",
  624. "type": "library",
  625. "installation-source": "dist",
  626. "autoload": {
  627. "psr-4": {
  628. "dh2y\\qrcode\\": "src/"
  629. }
  630. },
  631. "notification-url": "https://packagist.org/downloads/",
  632. "license": [
  633. "MIT"
  634. ],
  635. "authors": [
  636. {
  637. "name": "dh2y",
  638. "email": "xiaodai54_long@163.com"
  639. }
  640. ],
  641. "description": "qrcode for thinkphp5",
  642. "homepage": "https://github.com/cinaofdai/think-qrcode",
  643. "install-path": "../dh2y/think-qrcode"
  644. },
  645. {
  646. "name": "doctrine/cache",
  647. "version": "v1.4.4",
  648. "version_normalized": "1.4.4.0",
  649. "source": {
  650. "type": "git",
  651. "url": "https://github.com/doctrine/cache.git",
  652. "reference": "6433826dd02c9e5be8a127320dc13e7e6625d020"
  653. },
  654. "dist": {
  655. "type": "zip",
  656. "url": "https://api.github.com/repos/doctrine/cache/zipball/6433826dd02c9e5be8a127320dc13e7e6625d020",
  657. "reference": "6433826dd02c9e5be8a127320dc13e7e6625d020",
  658. "shasum": "",
  659. "mirrors": [
  660. {
  661. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  662. "preferred": true
  663. }
  664. ]
  665. },
  666. "require": {
  667. "php": ">=5.3.2"
  668. },
  669. "conflict": {
  670. "doctrine/common": ">2.2,<2.4"
  671. },
  672. "require-dev": {
  673. "phpunit/phpunit": ">=3.7",
  674. "predis/predis": "~1.0",
  675. "satooshi/php-coveralls": "~0.6"
  676. },
  677. "time": "2015-11-02T18:33:51+00:00",
  678. "type": "library",
  679. "extra": {
  680. "branch-alias": {
  681. "dev-master": "1.5.x-dev"
  682. }
  683. },
  684. "installation-source": "dist",
  685. "autoload": {
  686. "psr-0": {
  687. "Doctrine\\Common\\Cache\\": "lib/"
  688. }
  689. },
  690. "notification-url": "https://packagist.org/downloads/",
  691. "license": [
  692. "MIT"
  693. ],
  694. "authors": [
  695. {
  696. "name": "Roman Borschel",
  697. "email": "roman@code-factory.org"
  698. },
  699. {
  700. "name": "Benjamin Eberlei",
  701. "email": "kontakt@beberlei.de"
  702. },
  703. {
  704. "name": "Guilherme Blanco",
  705. "email": "guilhermeblanco@gmail.com"
  706. },
  707. {
  708. "name": "Jonathan Wage",
  709. "email": "jonwage@gmail.com"
  710. },
  711. {
  712. "name": "Johannes Schmitt",
  713. "email": "schmittjoh@gmail.com"
  714. }
  715. ],
  716. "description": "Caching library offering an object-oriented API for many cache backends",
  717. "homepage": "http://www.doctrine-project.org",
  718. "keywords": [
  719. "cache",
  720. "caching"
  721. ],
  722. "install-path": "../doctrine/cache"
  723. },
  724. {
  725. "name": "firebase/php-jwt",
  726. "version": "v5.0.0",
  727. "version_normalized": "5.0.0.0",
  728. "source": {
  729. "type": "git",
  730. "url": "https://github.com/firebase/php-jwt.git",
  731. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e"
  732. },
  733. "dist": {
  734. "type": "zip",
  735. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  736. "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e",
  737. "shasum": "",
  738. "mirrors": [
  739. {
  740. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  741. "preferred": true
  742. }
  743. ]
  744. },
  745. "require": {
  746. "php": ">=5.3.0"
  747. },
  748. "require-dev": {
  749. "phpunit/phpunit": " 4.8.35"
  750. },
  751. "time": "2017-06-27T22:17:23+00:00",
  752. "type": "library",
  753. "installation-source": "dist",
  754. "autoload": {
  755. "psr-4": {
  756. "Firebase\\JWT\\": "src"
  757. }
  758. },
  759. "notification-url": "https://packagist.org/downloads/",
  760. "license": [
  761. "BSD-3-Clause"
  762. ],
  763. "authors": [
  764. {
  765. "name": "Neuman Vong",
  766. "email": "neuman+pear@twilio.com",
  767. "role": "Developer"
  768. },
  769. {
  770. "name": "Anant Narayanan",
  771. "email": "anant@php.net",
  772. "role": "Developer"
  773. }
  774. ],
  775. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  776. "homepage": "https://github.com/firebase/php-jwt",
  777. "install-path": "../firebase/php-jwt"
  778. },
  779. {
  780. "name": "guzzle/guzzle",
  781. "version": "v3.9.3",
  782. "version_normalized": "3.9.3.0",
  783. "source": {
  784. "type": "git",
  785. "url": "https://github.com/guzzle/guzzle3.git",
  786. "reference": "0645b70d953bc1c067bbc8d5bc53194706b628d9"
  787. },
  788. "dist": {
  789. "type": "zip",
  790. "url": "https://api.github.com/repos/guzzle/guzzle3/zipball/0645b70d953bc1c067bbc8d5bc53194706b628d9",
  791. "reference": "0645b70d953bc1c067bbc8d5bc53194706b628d9",
  792. "shasum": "",
  793. "mirrors": [
  794. {
  795. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  796. "preferred": true
  797. }
  798. ]
  799. },
  800. "require": {
  801. "ext-curl": "*",
  802. "php": ">=5.3.3",
  803. "symfony/event-dispatcher": "~2.1"
  804. },
  805. "replace": {
  806. "guzzle/batch": "self.version",
  807. "guzzle/cache": "self.version",
  808. "guzzle/common": "self.version",
  809. "guzzle/http": "self.version",
  810. "guzzle/inflection": "self.version",
  811. "guzzle/iterator": "self.version",
  812. "guzzle/log": "self.version",
  813. "guzzle/parser": "self.version",
  814. "guzzle/plugin": "self.version",
  815. "guzzle/plugin-async": "self.version",
  816. "guzzle/plugin-backoff": "self.version",
  817. "guzzle/plugin-cache": "self.version",
  818. "guzzle/plugin-cookie": "self.version",
  819. "guzzle/plugin-curlauth": "self.version",
  820. "guzzle/plugin-error-response": "self.version",
  821. "guzzle/plugin-history": "self.version",
  822. "guzzle/plugin-log": "self.version",
  823. "guzzle/plugin-md5": "self.version",
  824. "guzzle/plugin-mock": "self.version",
  825. "guzzle/plugin-oauth": "self.version",
  826. "guzzle/service": "self.version",
  827. "guzzle/stream": "self.version"
  828. },
  829. "require-dev": {
  830. "doctrine/cache": "~1.3",
  831. "monolog/monolog": "~1.0",
  832. "phpunit/phpunit": "3.7.*",
  833. "psr/log": "~1.0",
  834. "symfony/class-loader": "~2.1",
  835. "zendframework/zend-cache": "2.*,<2.3",
  836. "zendframework/zend-log": "2.*,<2.3"
  837. },
  838. "suggest": {
  839. "guzzlehttp/guzzle": "Guzzle 5 has moved to a new package name. The package you have installed, Guzzle 3, is deprecated."
  840. },
  841. "time": "2015-03-18T18:23:50+00:00",
  842. "type": "library",
  843. "extra": {
  844. "branch-alias": {
  845. "dev-master": "3.9-dev"
  846. }
  847. },
  848. "installation-source": "dist",
  849. "autoload": {
  850. "psr-0": {
  851. "Guzzle": "src/",
  852. "Guzzle\\Tests": "tests/"
  853. }
  854. },
  855. "notification-url": "https://packagist.org/downloads/",
  856. "license": [
  857. "MIT"
  858. ],
  859. "authors": [
  860. {
  861. "name": "Michael Dowling",
  862. "email": "mtdowling@gmail.com",
  863. "homepage": "https://github.com/mtdowling"
  864. },
  865. {
  866. "name": "Guzzle Community",
  867. "homepage": "https://github.com/guzzle/guzzle/contributors"
  868. }
  869. ],
  870. "description": "PHP HTTP client. This library is deprecated in favor of https://packagist.org/packages/guzzlehttp/guzzle",
  871. "homepage": "http://guzzlephp.org/",
  872. "keywords": [
  873. "client",
  874. "curl",
  875. "framework",
  876. "http",
  877. "http client",
  878. "rest",
  879. "web service"
  880. ],
  881. "abandoned": "guzzlehttp/guzzle",
  882. "install-path": "../guzzle/guzzle"
  883. },
  884. {
  885. "name": "guzzlehttp/guzzle",
  886. "version": "6.3.3",
  887. "version_normalized": "6.3.3.0",
  888. "source": {
  889. "type": "git",
  890. "url": "https://github.com/guzzle/guzzle.git",
  891. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
  892. },
  893. "dist": {
  894. "type": "zip",
  895. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  896. "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
  897. "shasum": "",
  898. "mirrors": [
  899. {
  900. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  901. "preferred": true
  902. }
  903. ]
  904. },
  905. "require": {
  906. "guzzlehttp/promises": "^1.0",
  907. "guzzlehttp/psr7": "^1.4",
  908. "php": ">=5.5"
  909. },
  910. "require-dev": {
  911. "ext-curl": "*",
  912. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  913. "psr/log": "^1.0"
  914. },
  915. "suggest": {
  916. "psr/log": "Required for using the Log middleware"
  917. },
  918. "time": "2018-04-22T15:46:56+00:00",
  919. "type": "library",
  920. "extra": {
  921. "branch-alias": {
  922. "dev-master": "6.3-dev"
  923. }
  924. },
  925. "installation-source": "dist",
  926. "autoload": {
  927. "files": [
  928. "src/functions_include.php"
  929. ],
  930. "psr-4": {
  931. "GuzzleHttp\\": "src/"
  932. }
  933. },
  934. "notification-url": "https://packagist.org/downloads/",
  935. "license": [
  936. "MIT"
  937. ],
  938. "authors": [
  939. {
  940. "name": "Michael Dowling",
  941. "email": "mtdowling@gmail.com",
  942. "homepage": "https://github.com/mtdowling"
  943. }
  944. ],
  945. "description": "Guzzle is a PHP HTTP client library",
  946. "homepage": "http://guzzlephp.org/",
  947. "keywords": [
  948. "client",
  949. "curl",
  950. "framework",
  951. "http",
  952. "http client",
  953. "rest",
  954. "web service"
  955. ],
  956. "install-path": "../guzzlehttp/guzzle"
  957. },
  958. {
  959. "name": "guzzlehttp/promises",
  960. "version": "v1.3.1",
  961. "version_normalized": "1.3.1.0",
  962. "source": {
  963. "type": "git",
  964. "url": "https://github.com/guzzle/promises.git",
  965. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  966. },
  967. "dist": {
  968. "type": "zip",
  969. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  970. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  971. "shasum": "",
  972. "mirrors": [
  973. {
  974. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  975. "preferred": true
  976. }
  977. ]
  978. },
  979. "require": {
  980. "php": ">=5.5.0"
  981. },
  982. "require-dev": {
  983. "phpunit/phpunit": "^4.0"
  984. },
  985. "time": "2016-12-20T10:07:11+00:00",
  986. "type": "library",
  987. "extra": {
  988. "branch-alias": {
  989. "dev-master": "1.4-dev"
  990. }
  991. },
  992. "installation-source": "dist",
  993. "autoload": {
  994. "psr-4": {
  995. "GuzzleHttp\\Promise\\": "src/"
  996. },
  997. "files": [
  998. "src/functions_include.php"
  999. ]
  1000. },
  1001. "notification-url": "https://packagist.org/downloads/",
  1002. "license": [
  1003. "MIT"
  1004. ],
  1005. "authors": [
  1006. {
  1007. "name": "Michael Dowling",
  1008. "email": "mtdowling@gmail.com",
  1009. "homepage": "https://github.com/mtdowling"
  1010. }
  1011. ],
  1012. "description": "Guzzle promises library",
  1013. "keywords": [
  1014. "promise"
  1015. ],
  1016. "install-path": "../guzzlehttp/promises"
  1017. },
  1018. {
  1019. "name": "guzzlehttp/psr7",
  1020. "version": "1.5.2",
  1021. "version_normalized": "1.5.2.0",
  1022. "source": {
  1023. "type": "git",
  1024. "url": "https://github.com/guzzle/psr7.git",
  1025. "reference": "9f83dded91781a01c63574e387eaa769be769115"
  1026. },
  1027. "dist": {
  1028. "type": "zip",
  1029. "url": "https://api.github.com/repos/guzzle/psr7/zipball/9f83dded91781a01c63574e387eaa769be769115",
  1030. "reference": "9f83dded91781a01c63574e387eaa769be769115",
  1031. "shasum": "",
  1032. "mirrors": [
  1033. {
  1034. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1035. "preferred": true
  1036. }
  1037. ]
  1038. },
  1039. "require": {
  1040. "php": ">=5.4.0",
  1041. "psr/http-message": "~1.0",
  1042. "ralouphie/getallheaders": "^2.0.5"
  1043. },
  1044. "provide": {
  1045. "psr/http-message-implementation": "1.0"
  1046. },
  1047. "require-dev": {
  1048. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  1049. },
  1050. "time": "2018-12-04T20:46:45+00:00",
  1051. "type": "library",
  1052. "extra": {
  1053. "branch-alias": {
  1054. "dev-master": "1.5-dev"
  1055. }
  1056. },
  1057. "installation-source": "dist",
  1058. "autoload": {
  1059. "psr-4": {
  1060. "GuzzleHttp\\Psr7\\": "src/"
  1061. },
  1062. "files": [
  1063. "src/functions_include.php"
  1064. ]
  1065. },
  1066. "notification-url": "https://packagist.org/downloads/",
  1067. "license": [
  1068. "MIT"
  1069. ],
  1070. "authors": [
  1071. {
  1072. "name": "Michael Dowling",
  1073. "email": "mtdowling@gmail.com",
  1074. "homepage": "https://github.com/mtdowling"
  1075. },
  1076. {
  1077. "name": "Tobias Schultze",
  1078. "homepage": "https://github.com/Tobion"
  1079. }
  1080. ],
  1081. "description": "PSR-7 message implementation that also provides common utility methods",
  1082. "keywords": [
  1083. "http",
  1084. "message",
  1085. "psr-7",
  1086. "request",
  1087. "response",
  1088. "stream",
  1089. "uri",
  1090. "url"
  1091. ],
  1092. "install-path": "../guzzlehttp/psr7"
  1093. },
  1094. {
  1095. "name": "league/flysystem",
  1096. "version": "1.0.57",
  1097. "version_normalized": "1.0.57.0",
  1098. "source": {
  1099. "type": "git",
  1100. "url": "https://github.com/thephpleague/flysystem.git",
  1101. "reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a"
  1102. },
  1103. "dist": {
  1104. "type": "zip",
  1105. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
  1106. "reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
  1107. "shasum": "",
  1108. "mirrors": [
  1109. {
  1110. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1111. "preferred": true
  1112. }
  1113. ]
  1114. },
  1115. "require": {
  1116. "ext-fileinfo": "*",
  1117. "php": ">=5.5.9"
  1118. },
  1119. "conflict": {
  1120. "league/flysystem-sftp": "<1.0.6"
  1121. },
  1122. "require-dev": {
  1123. "phpspec/phpspec": "^3.4",
  1124. "phpunit/phpunit": "^5.7.10"
  1125. },
  1126. "suggest": {
  1127. "ext-fileinfo": "Required for MimeType",
  1128. "ext-ftp": "Allows you to use FTP server storage",
  1129. "ext-openssl": "Allows you to use FTPS server storage",
  1130. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1131. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1132. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1133. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1134. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1135. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1136. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1137. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1138. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1139. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1140. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1141. },
  1142. "time": "2019-10-16T21:01:05+00:00",
  1143. "type": "library",
  1144. "extra": {
  1145. "branch-alias": {
  1146. "dev-master": "1.1-dev"
  1147. }
  1148. },
  1149. "installation-source": "dist",
  1150. "autoload": {
  1151. "psr-4": {
  1152. "League\\Flysystem\\": "src/"
  1153. }
  1154. },
  1155. "notification-url": "https://packagist.org/downloads/",
  1156. "license": [
  1157. "MIT"
  1158. ],
  1159. "authors": [
  1160. {
  1161. "name": "Frank de Jonge",
  1162. "email": "info@frenky.net"
  1163. }
  1164. ],
  1165. "description": "Filesystem abstraction: Many filesystems, one API.",
  1166. "keywords": [
  1167. "Cloud Files",
  1168. "WebDAV",
  1169. "abstraction",
  1170. "aws",
  1171. "cloud",
  1172. "copy.com",
  1173. "dropbox",
  1174. "file systems",
  1175. "files",
  1176. "filesystem",
  1177. "filesystems",
  1178. "ftp",
  1179. "rackspace",
  1180. "remote",
  1181. "s3",
  1182. "sftp",
  1183. "storage"
  1184. ],
  1185. "install-path": "../league/flysystem"
  1186. },
  1187. {
  1188. "name": "league/flysystem-cached-adapter",
  1189. "version": "1.0.9",
  1190. "version_normalized": "1.0.9.0",
  1191. "source": {
  1192. "type": "git",
  1193. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  1194. "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f"
  1195. },
  1196. "dist": {
  1197. "type": "zip",
  1198. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/08ef74e9be88100807a3b92cc9048a312bf01d6f",
  1199. "reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f",
  1200. "shasum": "",
  1201. "mirrors": [
  1202. {
  1203. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1204. "preferred": true
  1205. }
  1206. ]
  1207. },
  1208. "require": {
  1209. "league/flysystem": "~1.0",
  1210. "psr/cache": "^1.0.0"
  1211. },
  1212. "require-dev": {
  1213. "mockery/mockery": "~0.9",
  1214. "phpspec/phpspec": "^3.4",
  1215. "phpunit/phpunit": "^5.7",
  1216. "predis/predis": "~1.0",
  1217. "tedivm/stash": "~0.12"
  1218. },
  1219. "suggest": {
  1220. "ext-phpredis": "Pure C implemented extension for PHP"
  1221. },
  1222. "time": "2018-07-09T20:51:04+00:00",
  1223. "type": "library",
  1224. "installation-source": "dist",
  1225. "autoload": {
  1226. "psr-4": {
  1227. "League\\Flysystem\\Cached\\": "src/"
  1228. }
  1229. },
  1230. "notification-url": "https://packagist.org/downloads/",
  1231. "license": [
  1232. "MIT"
  1233. ],
  1234. "authors": [
  1235. {
  1236. "name": "frankdejonge",
  1237. "email": "info@frenky.net"
  1238. }
  1239. ],
  1240. "description": "An adapter decorator to enable meta-data caching.",
  1241. "install-path": "../league/flysystem-cached-adapter"
  1242. },
  1243. {
  1244. "name": "monolog/monolog",
  1245. "version": "1.24.0",
  1246. "version_normalized": "1.24.0.0",
  1247. "source": {
  1248. "type": "git",
  1249. "url": "https://github.com/Seldaek/monolog.git",
  1250. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266"
  1251. },
  1252. "dist": {
  1253. "type": "zip",
  1254. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1255. "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266",
  1256. "shasum": "",
  1257. "mirrors": [
  1258. {
  1259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1260. "preferred": true
  1261. }
  1262. ]
  1263. },
  1264. "require": {
  1265. "php": ">=5.3.0",
  1266. "psr/log": "~1.0"
  1267. },
  1268. "provide": {
  1269. "psr/log-implementation": "1.0.0"
  1270. },
  1271. "require-dev": {
  1272. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1273. "doctrine/couchdb": "~1.0@dev",
  1274. "graylog2/gelf-php": "~1.0",
  1275. "jakub-onderka/php-parallel-lint": "0.9",
  1276. "php-amqplib/php-amqplib": "~2.4",
  1277. "php-console/php-console": "^3.1.3",
  1278. "phpunit/phpunit": "~4.5",
  1279. "phpunit/phpunit-mock-objects": "2.3.0",
  1280. "ruflin/elastica": ">=0.90 <3.0",
  1281. "sentry/sentry": "^0.13",
  1282. "swiftmailer/swiftmailer": "^5.3|^6.0"
  1283. },
  1284. "suggest": {
  1285. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1286. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1287. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1288. "ext-mongo": "Allow sending log messages to a MongoDB server",
  1289. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1290. "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
  1291. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1292. "php-console/php-console": "Allow sending log messages to Google Chrome",
  1293. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1294. "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
  1295. "sentry/sentry": "Allow sending log messages to a Sentry server"
  1296. },
  1297. "time": "2018-11-05T09:00:11+00:00",
  1298. "type": "library",
  1299. "extra": {
  1300. "branch-alias": {
  1301. "dev-master": "2.0.x-dev"
  1302. }
  1303. },
  1304. "installation-source": "dist",
  1305. "autoload": {
  1306. "psr-4": {
  1307. "Monolog\\": "src/Monolog"
  1308. }
  1309. },
  1310. "notification-url": "https://packagist.org/downloads/",
  1311. "license": [
  1312. "MIT"
  1313. ],
  1314. "authors": [
  1315. {
  1316. "name": "Jordi Boggiano",
  1317. "email": "j.boggiano@seld.be",
  1318. "homepage": "http://seld.be"
  1319. }
  1320. ],
  1321. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1322. "homepage": "http://github.com/Seldaek/monolog",
  1323. "keywords": [
  1324. "log",
  1325. "logging",
  1326. "psr-3"
  1327. ],
  1328. "install-path": "../monolog/monolog"
  1329. },
  1330. {
  1331. "name": "mtdowling/jmespath.php",
  1332. "version": "2.5.0",
  1333. "version_normalized": "2.5.0.0",
  1334. "source": {
  1335. "type": "git",
  1336. "url": "https://github.com/jmespath/jmespath.php.git",
  1337. "reference": "52168cb9472de06979613d365c7f1ab8798be895"
  1338. },
  1339. "dist": {
  1340. "type": "zip",
  1341. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/52168cb9472de06979613d365c7f1ab8798be895",
  1342. "reference": "52168cb9472de06979613d365c7f1ab8798be895",
  1343. "shasum": "",
  1344. "mirrors": [
  1345. {
  1346. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1347. "preferred": true
  1348. }
  1349. ]
  1350. },
  1351. "require": {
  1352. "php": ">=5.4.0",
  1353. "symfony/polyfill-mbstring": "^1.4"
  1354. },
  1355. "require-dev": {
  1356. "composer/xdebug-handler": "^1.2",
  1357. "phpunit/phpunit": "^4.8.36|^7.5.15"
  1358. },
  1359. "time": "2019-12-30T18:03:34+00:00",
  1360. "bin": [
  1361. "bin/jp.php"
  1362. ],
  1363. "type": "library",
  1364. "extra": {
  1365. "branch-alias": {
  1366. "dev-master": "2.5-dev"
  1367. }
  1368. },
  1369. "installation-source": "dist",
  1370. "autoload": {
  1371. "psr-4": {
  1372. "JmesPath\\": "src/"
  1373. },
  1374. "files": [
  1375. "src/JmesPath.php"
  1376. ]
  1377. },
  1378. "notification-url": "https://packagist.org/downloads/",
  1379. "license": [
  1380. "MIT"
  1381. ],
  1382. "authors": [
  1383. {
  1384. "name": "Michael Dowling",
  1385. "email": "mtdowling@gmail.com",
  1386. "homepage": "https://github.com/mtdowling"
  1387. }
  1388. ],
  1389. "description": "Declaratively specify how to extract elements from a JSON document",
  1390. "keywords": [
  1391. "json",
  1392. "jsonpath"
  1393. ],
  1394. "support": {
  1395. "issues": "https://github.com/jmespath/jmespath.php/issues",
  1396. "source": "https://github.com/jmespath/jmespath.php/tree/2.5.0"
  1397. },
  1398. "install-path": "../mtdowling/jmespath.php"
  1399. },
  1400. {
  1401. "name": "nesbot/carbon",
  1402. "version": "2.20.0",
  1403. "version_normalized": "2.20.0.0",
  1404. "source": {
  1405. "type": "git",
  1406. "url": "https://github.com/briannesbitt/Carbon.git",
  1407. "reference": "bc671b896c276795fad8426b0aa24e8ade0f2498"
  1408. },
  1409. "dist": {
  1410. "type": "zip",
  1411. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/bc671b896c276795fad8426b0aa24e8ade0f2498",
  1412. "reference": "bc671b896c276795fad8426b0aa24e8ade0f2498",
  1413. "shasum": "",
  1414. "mirrors": [
  1415. {
  1416. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1417. "preferred": true
  1418. }
  1419. ]
  1420. },
  1421. "require": {
  1422. "ext-json": "*",
  1423. "php": "^7.1.8 || ^8.0",
  1424. "symfony/translation": "^3.4 || ^4.0"
  1425. },
  1426. "require-dev": {
  1427. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  1428. "kylekatarnls/multi-tester": "^1.1",
  1429. "phpmd/phpmd": "^2.6",
  1430. "phpstan/phpstan": "^0.11",
  1431. "phpunit/phpunit": "^7.5 || ^8.0",
  1432. "squizlabs/php_codesniffer": "^3.4"
  1433. },
  1434. "time": "2019-06-25T10:00:57+00:00",
  1435. "type": "library",
  1436. "extra": {
  1437. "laravel": {
  1438. "providers": [
  1439. "Carbon\\Laravel\\ServiceProvider"
  1440. ]
  1441. }
  1442. },
  1443. "installation-source": "dist",
  1444. "autoload": {
  1445. "psr-4": {
  1446. "Carbon\\": "src/Carbon/"
  1447. }
  1448. },
  1449. "notification-url": "https://packagist.org/downloads/",
  1450. "license": [
  1451. "MIT"
  1452. ],
  1453. "authors": [
  1454. {
  1455. "name": "Brian Nesbitt",
  1456. "email": "brian@nesbot.com",
  1457. "homepage": "http://nesbot.com"
  1458. }
  1459. ],
  1460. "description": "A simple API extension for DateTime.",
  1461. "homepage": "http://carbon.nesbot.com",
  1462. "keywords": [
  1463. "date",
  1464. "datetime",
  1465. "time"
  1466. ],
  1467. "install-path": "../nesbot/carbon"
  1468. },
  1469. {
  1470. "name": "opis/closure",
  1471. "version": "3.4.1",
  1472. "version_normalized": "3.4.1.0",
  1473. "source": {
  1474. "type": "git",
  1475. "url": "https://github.com/opis/closure.git",
  1476. "reference": "e79f851749c3caa836d7ccc01ede5828feb762c7"
  1477. },
  1478. "dist": {
  1479. "type": "zip",
  1480. "url": "https://api.github.com/repos/opis/closure/zipball/e79f851749c3caa836d7ccc01ede5828feb762c7",
  1481. "reference": "e79f851749c3caa836d7ccc01ede5828feb762c7",
  1482. "shasum": "",
  1483. "mirrors": [
  1484. {
  1485. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1486. "preferred": true
  1487. }
  1488. ]
  1489. },
  1490. "require": {
  1491. "php": "^5.4 || ^7.0"
  1492. },
  1493. "require-dev": {
  1494. "jeremeamia/superclosure": "^2.0",
  1495. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  1496. },
  1497. "time": "2019-10-19T18:38:51+00:00",
  1498. "type": "library",
  1499. "extra": {
  1500. "branch-alias": {
  1501. "dev-master": "3.3.x-dev"
  1502. }
  1503. },
  1504. "installation-source": "dist",
  1505. "autoload": {
  1506. "psr-4": {
  1507. "Opis\\Closure\\": "src/"
  1508. },
  1509. "files": [
  1510. "functions.php"
  1511. ]
  1512. },
  1513. "notification-url": "https://packagist.org/downloads/",
  1514. "license": [
  1515. "MIT"
  1516. ],
  1517. "authors": [
  1518. {
  1519. "name": "Marius Sarca",
  1520. "email": "marius.sarca@gmail.com"
  1521. },
  1522. {
  1523. "name": "Sorin Sarca",
  1524. "email": "sarca_sorin@hotmail.com"
  1525. }
  1526. ],
  1527. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  1528. "homepage": "https://opis.io/closure",
  1529. "keywords": [
  1530. "anonymous functions",
  1531. "closure",
  1532. "function",
  1533. "serializable",
  1534. "serialization",
  1535. "serialize"
  1536. ],
  1537. "install-path": "../opis/closure"
  1538. },
  1539. {
  1540. "name": "overtrue/socialite",
  1541. "version": "1.3.0",
  1542. "version_normalized": "1.3.0.0",
  1543. "source": {
  1544. "type": "git",
  1545. "url": "https://github.com/overtrue/socialite.git",
  1546. "reference": "fda55f0acef43a144799b1957a8f93d9f5deffce"
  1547. },
  1548. "dist": {
  1549. "type": "zip",
  1550. "url": "https://api.github.com/repos/overtrue/socialite/zipball/fda55f0acef43a144799b1957a8f93d9f5deffce",
  1551. "reference": "fda55f0acef43a144799b1957a8f93d9f5deffce",
  1552. "shasum": "",
  1553. "mirrors": [
  1554. {
  1555. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1556. "preferred": true
  1557. }
  1558. ]
  1559. },
  1560. "require": {
  1561. "guzzlehttp/guzzle": "~5.0|~6.0",
  1562. "php": ">=5.4.0",
  1563. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0"
  1564. },
  1565. "require-dev": {
  1566. "mockery/mockery": "~0.9",
  1567. "phpunit/phpunit": "~4.0"
  1568. },
  1569. "time": "2017-08-04T06:28:22+00:00",
  1570. "type": "library",
  1571. "installation-source": "dist",
  1572. "autoload": {
  1573. "psr-4": {
  1574. "Overtrue\\Socialite\\": "src/"
  1575. }
  1576. },
  1577. "notification-url": "https://packagist.org/downloads/",
  1578. "license": [
  1579. "MIT"
  1580. ],
  1581. "authors": [
  1582. {
  1583. "name": "overtrue",
  1584. "email": "anzhengchao@gmail.com"
  1585. }
  1586. ],
  1587. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  1588. "keywords": [
  1589. "login",
  1590. "oauth",
  1591. "qq",
  1592. "social",
  1593. "wechat",
  1594. "weibo"
  1595. ],
  1596. "install-path": "../overtrue/socialite"
  1597. },
  1598. {
  1599. "name": "overtrue/wechat",
  1600. "version": "3.3.33",
  1601. "version_normalized": "3.3.33.0",
  1602. "source": {
  1603. "type": "git",
  1604. "url": "https://github.com/overtrue/wechat.git",
  1605. "reference": "78e5476df330754040d1c400d0bca640d5b77cb7"
  1606. },
  1607. "dist": {
  1608. "type": "zip",
  1609. "url": "https://api.github.com/repos/overtrue/wechat/zipball/78e5476df330754040d1c400d0bca640d5b77cb7",
  1610. "reference": "78e5476df330754040d1c400d0bca640d5b77cb7",
  1611. "shasum": "",
  1612. "mirrors": [
  1613. {
  1614. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1615. "preferred": true
  1616. }
  1617. ]
  1618. },
  1619. "require": {
  1620. "doctrine/cache": "1.4.*",
  1621. "ext-openssl": "*",
  1622. "guzzlehttp/guzzle": "~6.2",
  1623. "monolog/monolog": "^1.17",
  1624. "overtrue/socialite": "^1.0.25",
  1625. "php": ">=5.5.0",
  1626. "pimple/pimple": "~3.0",
  1627. "symfony/http-foundation": "~2.6|~2.7|~2.8|~3.0",
  1628. "symfony/psr-http-message-bridge": "~0.3|^1.0"
  1629. },
  1630. "require-dev": {
  1631. "mockery/mockery": "^0.9.9",
  1632. "overtrue/phplint": "dev-master",
  1633. "phpunit/phpunit": "~4.0"
  1634. },
  1635. "time": "2018-10-17T12:27:27+00:00",
  1636. "type": "library",
  1637. "installation-source": "dist",
  1638. "autoload": {
  1639. "psr-4": {
  1640. "EasyWeChat\\": "src/"
  1641. },
  1642. "files": [
  1643. "src/Payment/helpers.php"
  1644. ]
  1645. },
  1646. "notification-url": "https://packagist.org/downloads/",
  1647. "license": [
  1648. "MIT"
  1649. ],
  1650. "authors": [
  1651. {
  1652. "name": "overtrue",
  1653. "email": "anzhengchao@gmail.com"
  1654. }
  1655. ],
  1656. "description": "微信SDK",
  1657. "keywords": [
  1658. "sdk",
  1659. "wechat",
  1660. "weixin",
  1661. "weixin-sdk"
  1662. ],
  1663. "install-path": "../overtrue/wechat"
  1664. },
  1665. {
  1666. "name": "paragonie/random_compat",
  1667. "version": "v9.99.99",
  1668. "version_normalized": "9.99.99.0",
  1669. "source": {
  1670. "type": "git",
  1671. "url": "https://github.com/paragonie/random_compat.git",
  1672. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  1673. },
  1674. "dist": {
  1675. "type": "zip",
  1676. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1677. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  1678. "shasum": "",
  1679. "mirrors": [
  1680. {
  1681. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1682. "preferred": true
  1683. }
  1684. ]
  1685. },
  1686. "require": {
  1687. "php": "^7"
  1688. },
  1689. "require-dev": {
  1690. "phpunit/phpunit": "4.*|5.*",
  1691. "vimeo/psalm": "^1"
  1692. },
  1693. "suggest": {
  1694. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  1695. },
  1696. "time": "2018-07-02T15:55:56+00:00",
  1697. "type": "library",
  1698. "installation-source": "dist",
  1699. "notification-url": "https://packagist.org/downloads/",
  1700. "license": [
  1701. "MIT"
  1702. ],
  1703. "authors": [
  1704. {
  1705. "name": "Paragon Initiative Enterprises",
  1706. "email": "security@paragonie.com",
  1707. "homepage": "https://paragonie.com"
  1708. }
  1709. ],
  1710. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  1711. "keywords": [
  1712. "csprng",
  1713. "polyfill",
  1714. "pseudorandom",
  1715. "random"
  1716. ],
  1717. "install-path": "../paragonie/random_compat"
  1718. },
  1719. {
  1720. "name": "pda/pheanstalk",
  1721. "version": "v4.0.3",
  1722. "version_normalized": "4.0.3.0",
  1723. "source": {
  1724. "type": "git",
  1725. "url": "https://github.com/pheanstalk/pheanstalk.git",
  1726. "reference": "6165573aad525d39b3ac8ae916214cb483a61263"
  1727. },
  1728. "dist": {
  1729. "type": "zip",
  1730. "url": "https://api.github.com/repos/pheanstalk/pheanstalk/zipball/6165573aad525d39b3ac8ae916214cb483a61263",
  1731. "reference": "6165573aad525d39b3ac8ae916214cb483a61263",
  1732. "shasum": "",
  1733. "mirrors": [
  1734. {
  1735. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1736. "preferred": true
  1737. }
  1738. ]
  1739. },
  1740. "require": {
  1741. "ext-mbstring": "*",
  1742. "php": ">=7.1.0"
  1743. },
  1744. "require-dev": {
  1745. "phpunit/phpunit": "^7"
  1746. },
  1747. "time": "2020-09-22T07:17:48+00:00",
  1748. "type": "library",
  1749. "installation-source": "dist",
  1750. "autoload": {
  1751. "psr-4": {
  1752. "Pheanstalk\\": "src/"
  1753. }
  1754. },
  1755. "notification-url": "https://packagist.org/downloads/",
  1756. "license": [
  1757. "MIT"
  1758. ],
  1759. "authors": [
  1760. {
  1761. "name": "Paul Annesley",
  1762. "email": "paul@annesley.cc",
  1763. "homepage": "http://paul.annesley.cc/",
  1764. "role": "Developer"
  1765. },
  1766. {
  1767. "name": "Sam Mousa",
  1768. "email": "sam@mousa.nl",
  1769. "role": "Maintainer"
  1770. }
  1771. ],
  1772. "description": "PHP client for beanstalkd queue",
  1773. "homepage": "https://github.com/pheanstalk/pheanstalk",
  1774. "keywords": [
  1775. "beanstalkd"
  1776. ],
  1777. "support": {
  1778. "issues": "https://github.com/pheanstalk/pheanstalk/issues",
  1779. "source": "https://github.com/pheanstalk/pheanstalk/tree/v4.0.3"
  1780. },
  1781. "install-path": "../pda/pheanstalk"
  1782. },
  1783. {
  1784. "name": "phpoffice/phpexcel",
  1785. "version": "1.8.2",
  1786. "version_normalized": "1.8.2.0",
  1787. "source": {
  1788. "type": "git",
  1789. "url": "https://github.com/PHPOffice/PHPExcel.git",
  1790. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870"
  1791. },
  1792. "dist": {
  1793. "type": "zip",
  1794. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870",
  1795. "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
  1796. "shasum": "",
  1797. "mirrors": [
  1798. {
  1799. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1800. "preferred": true
  1801. }
  1802. ]
  1803. },
  1804. "require": {
  1805. "ext-mbstring": "*",
  1806. "ext-xml": "*",
  1807. "ext-xmlwriter": "*",
  1808. "php": "^5.2|^7.0"
  1809. },
  1810. "require-dev": {
  1811. "squizlabs/php_codesniffer": "2.*"
  1812. },
  1813. "time": "2018-11-22T23:07:24+00:00",
  1814. "type": "library",
  1815. "installation-source": "dist",
  1816. "autoload": {
  1817. "psr-0": {
  1818. "PHPExcel": "Classes/"
  1819. }
  1820. },
  1821. "notification-url": "https://packagist.org/downloads/",
  1822. "license": [
  1823. "LGPL-2.1"
  1824. ],
  1825. "authors": [
  1826. {
  1827. "name": "Maarten Balliauw",
  1828. "homepage": "http://blog.maartenballiauw.be"
  1829. },
  1830. {
  1831. "name": "Erik Tilt"
  1832. },
  1833. {
  1834. "name": "Franck Lefevre",
  1835. "homepage": "http://rootslabs.net"
  1836. },
  1837. {
  1838. "name": "Mark Baker",
  1839. "homepage": "http://markbakeruk.net"
  1840. }
  1841. ],
  1842. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1843. "homepage": "https://github.com/PHPOffice/PHPExcel",
  1844. "keywords": [
  1845. "OpenXML",
  1846. "excel",
  1847. "php",
  1848. "spreadsheet",
  1849. "xls",
  1850. "xlsx"
  1851. ],
  1852. "abandoned": "phpoffice/phpspreadsheet",
  1853. "install-path": "../phpoffice/phpexcel"
  1854. },
  1855. {
  1856. "name": "pimple/pimple",
  1857. "version": "v3.2.3",
  1858. "version_normalized": "3.2.3.0",
  1859. "source": {
  1860. "type": "git",
  1861. "url": "https://github.com/silexphp/Pimple.git",
  1862. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32"
  1863. },
  1864. "dist": {
  1865. "type": "zip",
  1866. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32",
  1867. "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32",
  1868. "shasum": "",
  1869. "mirrors": [
  1870. {
  1871. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1872. "preferred": true
  1873. }
  1874. ]
  1875. },
  1876. "require": {
  1877. "php": ">=5.3.0",
  1878. "psr/container": "^1.0"
  1879. },
  1880. "require-dev": {
  1881. "symfony/phpunit-bridge": "^3.2"
  1882. },
  1883. "time": "2018-01-21T07:42:36+00:00",
  1884. "type": "library",
  1885. "extra": {
  1886. "branch-alias": {
  1887. "dev-master": "3.2.x-dev"
  1888. }
  1889. },
  1890. "installation-source": "dist",
  1891. "autoload": {
  1892. "psr-0": {
  1893. "Pimple": "src/"
  1894. }
  1895. },
  1896. "notification-url": "https://packagist.org/downloads/",
  1897. "license": [
  1898. "MIT"
  1899. ],
  1900. "authors": [
  1901. {
  1902. "name": "Fabien Potencier",
  1903. "email": "fabien@symfony.com"
  1904. }
  1905. ],
  1906. "description": "Pimple, a simple Dependency Injection Container",
  1907. "homepage": "http://pimple.sensiolabs.org",
  1908. "keywords": [
  1909. "container",
  1910. "dependency injection"
  1911. ],
  1912. "install-path": "../pimple/pimple"
  1913. },
  1914. {
  1915. "name": "psr/cache",
  1916. "version": "1.0.1",
  1917. "version_normalized": "1.0.1.0",
  1918. "source": {
  1919. "type": "git",
  1920. "url": "https://github.com/php-fig/cache.git",
  1921. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  1922. },
  1923. "dist": {
  1924. "type": "zip",
  1925. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  1926. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  1927. "shasum": "",
  1928. "mirrors": [
  1929. {
  1930. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1931. "preferred": true
  1932. }
  1933. ]
  1934. },
  1935. "require": {
  1936. "php": ">=5.3.0"
  1937. },
  1938. "time": "2016-08-06T20:24:11+00:00",
  1939. "type": "library",
  1940. "extra": {
  1941. "branch-alias": {
  1942. "dev-master": "1.0.x-dev"
  1943. }
  1944. },
  1945. "installation-source": "dist",
  1946. "autoload": {
  1947. "psr-4": {
  1948. "Psr\\Cache\\": "src/"
  1949. }
  1950. },
  1951. "notification-url": "https://packagist.org/downloads/",
  1952. "license": [
  1953. "MIT"
  1954. ],
  1955. "authors": [
  1956. {
  1957. "name": "PHP-FIG",
  1958. "homepage": "http://www.php-fig.org/"
  1959. }
  1960. ],
  1961. "description": "Common interface for caching libraries",
  1962. "keywords": [
  1963. "cache",
  1964. "psr",
  1965. "psr-6"
  1966. ],
  1967. "install-path": "../psr/cache"
  1968. },
  1969. {
  1970. "name": "psr/container",
  1971. "version": "1.0.0",
  1972. "version_normalized": "1.0.0.0",
  1973. "source": {
  1974. "type": "git",
  1975. "url": "https://github.com/php-fig/container.git",
  1976. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  1977. },
  1978. "dist": {
  1979. "type": "zip",
  1980. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1981. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  1982. "shasum": "",
  1983. "mirrors": [
  1984. {
  1985. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1986. "preferred": true
  1987. }
  1988. ]
  1989. },
  1990. "require": {
  1991. "php": ">=5.3.0"
  1992. },
  1993. "time": "2017-02-14T16:28:37+00:00",
  1994. "type": "library",
  1995. "extra": {
  1996. "branch-alias": {
  1997. "dev-master": "1.0.x-dev"
  1998. }
  1999. },
  2000. "installation-source": "dist",
  2001. "autoload": {
  2002. "psr-4": {
  2003. "Psr\\Container\\": "src/"
  2004. }
  2005. },
  2006. "notification-url": "https://packagist.org/downloads/",
  2007. "license": [
  2008. "MIT"
  2009. ],
  2010. "authors": [
  2011. {
  2012. "name": "PHP-FIG",
  2013. "homepage": "http://www.php-fig.org/"
  2014. }
  2015. ],
  2016. "description": "Common Container Interface (PHP FIG PSR-11)",
  2017. "homepage": "https://github.com/php-fig/container",
  2018. "keywords": [
  2019. "PSR-11",
  2020. "container",
  2021. "container-interface",
  2022. "container-interop",
  2023. "psr"
  2024. ],
  2025. "install-path": "../psr/container"
  2026. },
  2027. {
  2028. "name": "psr/http-message",
  2029. "version": "1.0.1",
  2030. "version_normalized": "1.0.1.0",
  2031. "source": {
  2032. "type": "git",
  2033. "url": "https://github.com/php-fig/http-message.git",
  2034. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  2035. },
  2036. "dist": {
  2037. "type": "zip",
  2038. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  2039. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  2040. "shasum": "",
  2041. "mirrors": [
  2042. {
  2043. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2044. "preferred": true
  2045. }
  2046. ]
  2047. },
  2048. "require": {
  2049. "php": ">=5.3.0"
  2050. },
  2051. "time": "2016-08-06T14:39:51+00:00",
  2052. "type": "library",
  2053. "extra": {
  2054. "branch-alias": {
  2055. "dev-master": "1.0.x-dev"
  2056. }
  2057. },
  2058. "installation-source": "dist",
  2059. "autoload": {
  2060. "psr-4": {
  2061. "Psr\\Http\\Message\\": "src/"
  2062. }
  2063. },
  2064. "notification-url": "https://packagist.org/downloads/",
  2065. "license": [
  2066. "MIT"
  2067. ],
  2068. "authors": [
  2069. {
  2070. "name": "PHP-FIG",
  2071. "homepage": "http://www.php-fig.org/"
  2072. }
  2073. ],
  2074. "description": "Common interface for HTTP messages",
  2075. "homepage": "https://github.com/php-fig/http-message",
  2076. "keywords": [
  2077. "http",
  2078. "http-message",
  2079. "psr",
  2080. "psr-7",
  2081. "request",
  2082. "response"
  2083. ],
  2084. "install-path": "../psr/http-message"
  2085. },
  2086. {
  2087. "name": "psr/log",
  2088. "version": "1.1.2",
  2089. "version_normalized": "1.1.2.0",
  2090. "source": {
  2091. "type": "git",
  2092. "url": "https://github.com/php-fig/log.git",
  2093. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
  2094. },
  2095. "dist": {
  2096. "type": "zip",
  2097. "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
  2098. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
  2099. "shasum": "",
  2100. "mirrors": [
  2101. {
  2102. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2103. "preferred": true
  2104. }
  2105. ]
  2106. },
  2107. "require": {
  2108. "php": ">=5.3.0"
  2109. },
  2110. "time": "2019-11-01T11:05:21+00:00",
  2111. "type": "library",
  2112. "extra": {
  2113. "branch-alias": {
  2114. "dev-master": "1.1.x-dev"
  2115. }
  2116. },
  2117. "installation-source": "dist",
  2118. "autoload": {
  2119. "psr-4": {
  2120. "Psr\\Log\\": "Psr/Log/"
  2121. }
  2122. },
  2123. "notification-url": "https://packagist.org/downloads/",
  2124. "license": [
  2125. "MIT"
  2126. ],
  2127. "authors": [
  2128. {
  2129. "name": "PHP-FIG",
  2130. "homepage": "http://www.php-fig.org/"
  2131. }
  2132. ],
  2133. "description": "Common interface for logging libraries",
  2134. "homepage": "https://github.com/php-fig/log",
  2135. "keywords": [
  2136. "log",
  2137. "psr",
  2138. "psr-3"
  2139. ],
  2140. "install-path": "../psr/log"
  2141. },
  2142. {
  2143. "name": "psr/simple-cache",
  2144. "version": "1.0.1",
  2145. "version_normalized": "1.0.1.0",
  2146. "source": {
  2147. "type": "git",
  2148. "url": "https://github.com/php-fig/simple-cache.git",
  2149. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2150. },
  2151. "dist": {
  2152. "type": "zip",
  2153. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2154. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2155. "shasum": "",
  2156. "mirrors": [
  2157. {
  2158. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2159. "preferred": true
  2160. }
  2161. ]
  2162. },
  2163. "require": {
  2164. "php": ">=5.3.0"
  2165. },
  2166. "time": "2017-10-23T01:57:42+00:00",
  2167. "type": "library",
  2168. "extra": {
  2169. "branch-alias": {
  2170. "dev-master": "1.0.x-dev"
  2171. }
  2172. },
  2173. "installation-source": "dist",
  2174. "autoload": {
  2175. "psr-4": {
  2176. "Psr\\SimpleCache\\": "src/"
  2177. }
  2178. },
  2179. "notification-url": "https://packagist.org/downloads/",
  2180. "license": [
  2181. "MIT"
  2182. ],
  2183. "authors": [
  2184. {
  2185. "name": "PHP-FIG",
  2186. "homepage": "http://www.php-fig.org/"
  2187. }
  2188. ],
  2189. "description": "Common interfaces for simple caching",
  2190. "keywords": [
  2191. "cache",
  2192. "caching",
  2193. "psr",
  2194. "psr-16",
  2195. "simple-cache"
  2196. ],
  2197. "install-path": "../psr/simple-cache"
  2198. },
  2199. {
  2200. "name": "qcloud/cos-sdk-v5",
  2201. "version": "v1.3.3",
  2202. "version_normalized": "1.3.3.0",
  2203. "source": {
  2204. "type": "git",
  2205. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  2206. "reference": "cd1b9cefa04521eaf125a82eb53552d9a87aae4d"
  2207. },
  2208. "dist": {
  2209. "type": "zip",
  2210. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/cd1b9cefa04521eaf125a82eb53552d9a87aae4d",
  2211. "reference": "cd1b9cefa04521eaf125a82eb53552d9a87aae4d",
  2212. "shasum": "",
  2213. "mirrors": [
  2214. {
  2215. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2216. "preferred": true
  2217. }
  2218. ]
  2219. },
  2220. "require": {
  2221. "guzzle/guzzle": "~3.7",
  2222. "php": ">=5.3.0"
  2223. },
  2224. "time": "2019-08-07T10:15:47+00:00",
  2225. "type": "library",
  2226. "installation-source": "dist",
  2227. "autoload": {
  2228. "psr-0": {
  2229. "Qcloud\\Cos\\": "src/"
  2230. }
  2231. },
  2232. "notification-url": "https://packagist.org/downloads/",
  2233. "license": [
  2234. "MIT"
  2235. ],
  2236. "authors": [
  2237. {
  2238. "name": "yaozongyou",
  2239. "email": "yaozongyou@vip.qq.com"
  2240. },
  2241. {
  2242. "name": "lewzylu",
  2243. "email": "327874225@qq.com"
  2244. }
  2245. ],
  2246. "description": "PHP SDK for QCloud COS",
  2247. "keywords": [
  2248. "cos",
  2249. "php",
  2250. "qcloud"
  2251. ],
  2252. "install-path": "../qcloud/cos-sdk-v5"
  2253. },
  2254. {
  2255. "name": "qiniu/php-sdk",
  2256. "version": "v7.2.9",
  2257. "version_normalized": "7.2.9.0",
  2258. "source": {
  2259. "type": "git",
  2260. "url": "https://github.com/qiniu/php-sdk.git",
  2261. "reference": "afe7d8715d8a688b1d8d8cdf031240d2363dad90"
  2262. },
  2263. "dist": {
  2264. "type": "zip",
  2265. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/afe7d8715d8a688b1d8d8cdf031240d2363dad90",
  2266. "reference": "afe7d8715d8a688b1d8d8cdf031240d2363dad90",
  2267. "shasum": "",
  2268. "mirrors": [
  2269. {
  2270. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2271. "preferred": true
  2272. }
  2273. ]
  2274. },
  2275. "require": {
  2276. "php": ">=5.3.3"
  2277. },
  2278. "require-dev": {
  2279. "phpunit/phpunit": "~4.0",
  2280. "squizlabs/php_codesniffer": "~2.3"
  2281. },
  2282. "time": "2019-07-09T07:55:07+00:00",
  2283. "type": "library",
  2284. "installation-source": "dist",
  2285. "autoload": {
  2286. "psr-4": {
  2287. "Qiniu\\": "src/Qiniu"
  2288. },
  2289. "files": [
  2290. "src/Qiniu/functions.php"
  2291. ]
  2292. },
  2293. "notification-url": "https://packagist.org/downloads/",
  2294. "license": [
  2295. "MIT"
  2296. ],
  2297. "authors": [
  2298. {
  2299. "name": "Qiniu",
  2300. "email": "sdk@qiniu.com",
  2301. "homepage": "http://www.qiniu.com"
  2302. }
  2303. ],
  2304. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  2305. "homepage": "http://developer.qiniu.com/",
  2306. "keywords": [
  2307. "cloud",
  2308. "qiniu",
  2309. "sdk",
  2310. "storage"
  2311. ],
  2312. "install-path": "../qiniu/php-sdk"
  2313. },
  2314. {
  2315. "name": "ralouphie/getallheaders",
  2316. "version": "2.0.5",
  2317. "version_normalized": "2.0.5.0",
  2318. "source": {
  2319. "type": "git",
  2320. "url": "https://github.com/ralouphie/getallheaders.git",
  2321. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa"
  2322. },
  2323. "dist": {
  2324. "type": "zip",
  2325. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  2326. "reference": "5601c8a83fbba7ef674a7369456d12f1e0d0eafa",
  2327. "shasum": "",
  2328. "mirrors": [
  2329. {
  2330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2331. "preferred": true
  2332. }
  2333. ]
  2334. },
  2335. "require": {
  2336. "php": ">=5.3"
  2337. },
  2338. "require-dev": {
  2339. "phpunit/phpunit": "~3.7.0",
  2340. "satooshi/php-coveralls": ">=1.0"
  2341. },
  2342. "time": "2016-02-11T07:05:27+00:00",
  2343. "type": "library",
  2344. "installation-source": "dist",
  2345. "autoload": {
  2346. "files": [
  2347. "src/getallheaders.php"
  2348. ]
  2349. },
  2350. "notification-url": "https://packagist.org/downloads/",
  2351. "license": [
  2352. "MIT"
  2353. ],
  2354. "authors": [
  2355. {
  2356. "name": "Ralph Khattar",
  2357. "email": "ralph.khattar@gmail.com"
  2358. }
  2359. ],
  2360. "description": "A polyfill for getallheaders.",
  2361. "install-path": "../ralouphie/getallheaders"
  2362. },
  2363. {
  2364. "name": "songshenzong/support",
  2365. "version": "2.0.5",
  2366. "version_normalized": "2.0.5.0",
  2367. "source": {
  2368. "type": "git",
  2369. "url": "https://github.com/songshenzong/support.git",
  2370. "reference": "34973c04ffcf226e503f1c3a69d30ac49f7621f6"
  2371. },
  2372. "dist": {
  2373. "type": "zip",
  2374. "url": "https://api.github.com/repos/songshenzong/support/zipball/34973c04ffcf226e503f1c3a69d30ac49f7621f6",
  2375. "reference": "34973c04ffcf226e503f1c3a69d30ac49f7621f6",
  2376. "shasum": "",
  2377. "mirrors": [
  2378. {
  2379. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2380. "preferred": true
  2381. }
  2382. ]
  2383. },
  2384. "require": {
  2385. "danielstjules/stringy": "^3.1",
  2386. "ext-json": "*",
  2387. "ext-simplexml": "*",
  2388. "ext-xml": "*",
  2389. "php": ">=5.5"
  2390. },
  2391. "require-dev": {
  2392. "laravel/framework": "^5.8",
  2393. "phpunit/phpunit": "^4.8.35|^5.4.3"
  2394. },
  2395. "time": "2019-08-29T01:59:12+00:00",
  2396. "type": "library",
  2397. "extra": {
  2398. "laravel": {
  2399. "providers": [
  2400. "Songshenzong\\Support\\StringsServiceProvider"
  2401. ],
  2402. "aliases": {
  2403. "Strings": "Songshenzong\\Support\\StringsFacade"
  2404. }
  2405. }
  2406. },
  2407. "installation-source": "dist",
  2408. "autoload": {
  2409. "psr-4": {
  2410. "Songshenzong\\Support\\": "src/"
  2411. },
  2412. "files": [
  2413. "src/StringsHelpers.php",
  2414. "src/BashEchoHelpers.php"
  2415. ]
  2416. },
  2417. "notification-url": "https://packagist.org/downloads/",
  2418. "license": [
  2419. "MIT"
  2420. ],
  2421. "authors": [
  2422. {
  2423. "name": "Songshenzong",
  2424. "email": "i@songshenzong.com"
  2425. }
  2426. ],
  2427. "description": "The Songshenzong Support package.",
  2428. "homepage": "http://songshenzong.com",
  2429. "keywords": [
  2430. "laravel",
  2431. "support",
  2432. "tools",
  2433. "web"
  2434. ],
  2435. "support": {
  2436. "issues": "https://github.com/songshenzong/support/issues",
  2437. "source": "https://github.com/songshenzong/support"
  2438. },
  2439. "install-path": "../songshenzong/support"
  2440. },
  2441. {
  2442. "name": "spatie/macroable",
  2443. "version": "1.0.0",
  2444. "version_normalized": "1.0.0.0",
  2445. "source": {
  2446. "type": "git",
  2447. "url": "https://github.com/spatie/macroable.git",
  2448. "reference": "74b0d189ce75142f1706aad834d5a428dfc7c3c3"
  2449. },
  2450. "dist": {
  2451. "type": "zip",
  2452. "url": "https://api.github.com/repos/spatie/macroable/zipball/74b0d189ce75142f1706aad834d5a428dfc7c3c3",
  2453. "reference": "74b0d189ce75142f1706aad834d5a428dfc7c3c3",
  2454. "shasum": "",
  2455. "mirrors": [
  2456. {
  2457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2458. "preferred": true
  2459. }
  2460. ]
  2461. },
  2462. "require": {
  2463. "php": "^7.0"
  2464. },
  2465. "require-dev": {
  2466. "phpunit/phpunit": "^6.3"
  2467. },
  2468. "time": "2017-09-18T09:51:20+00:00",
  2469. "type": "library",
  2470. "installation-source": "dist",
  2471. "autoload": {
  2472. "psr-4": {
  2473. "Spatie\\Macroable\\": "src"
  2474. }
  2475. },
  2476. "notification-url": "https://packagist.org/downloads/",
  2477. "license": [
  2478. "MIT"
  2479. ],
  2480. "authors": [
  2481. {
  2482. "name": "Freek Van der Herten",
  2483. "email": "freek@spatie.be",
  2484. "homepage": "https://spatie.be",
  2485. "role": "Developer"
  2486. }
  2487. ],
  2488. "description": "A trait to dynamically add methods to a class",
  2489. "homepage": "https://github.com/spatie/macroable",
  2490. "keywords": [
  2491. "macroable",
  2492. "spatie"
  2493. ],
  2494. "install-path": "../spatie/macroable"
  2495. },
  2496. {
  2497. "name": "symfony/event-dispatcher",
  2498. "version": "v2.8.50",
  2499. "version_normalized": "2.8.50.0",
  2500. "source": {
  2501. "type": "git",
  2502. "url": "https://github.com/symfony/event-dispatcher.git",
  2503. "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0"
  2504. },
  2505. "dist": {
  2506. "type": "zip",
  2507. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a77e974a5fecb4398833b0709210e3d5e334ffb0",
  2508. "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0",
  2509. "shasum": "",
  2510. "mirrors": [
  2511. {
  2512. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2513. "preferred": true
  2514. }
  2515. ]
  2516. },
  2517. "require": {
  2518. "php": ">=5.3.9"
  2519. },
  2520. "require-dev": {
  2521. "psr/log": "~1.0",
  2522. "symfony/config": "^2.0.5|~3.0.0",
  2523. "symfony/dependency-injection": "~2.6|~3.0.0",
  2524. "symfony/expression-language": "~2.6|~3.0.0",
  2525. "symfony/stopwatch": "~2.3|~3.0.0"
  2526. },
  2527. "suggest": {
  2528. "symfony/dependency-injection": "",
  2529. "symfony/http-kernel": ""
  2530. },
  2531. "time": "2018-11-21T14:20:20+00:00",
  2532. "type": "library",
  2533. "extra": {
  2534. "branch-alias": {
  2535. "dev-master": "2.8-dev"
  2536. }
  2537. },
  2538. "installation-source": "dist",
  2539. "autoload": {
  2540. "psr-4": {
  2541. "Symfony\\Component\\EventDispatcher\\": ""
  2542. },
  2543. "exclude-from-classmap": [
  2544. "/Tests/"
  2545. ]
  2546. },
  2547. "notification-url": "https://packagist.org/downloads/",
  2548. "license": [
  2549. "MIT"
  2550. ],
  2551. "authors": [
  2552. {
  2553. "name": "Fabien Potencier",
  2554. "email": "fabien@symfony.com"
  2555. },
  2556. {
  2557. "name": "Symfony Community",
  2558. "homepage": "https://symfony.com/contributors"
  2559. }
  2560. ],
  2561. "description": "Symfony EventDispatcher Component",
  2562. "homepage": "https://symfony.com",
  2563. "install-path": "../symfony/event-dispatcher"
  2564. },
  2565. {
  2566. "name": "symfony/http-foundation",
  2567. "version": "v3.4.28",
  2568. "version_normalized": "3.4.28.0",
  2569. "source": {
  2570. "type": "git",
  2571. "url": "https://github.com/symfony/http-foundation.git",
  2572. "reference": "677ae5e892b081e71a665bfa7dd90fe61800c00e"
  2573. },
  2574. "dist": {
  2575. "type": "zip",
  2576. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/677ae5e892b081e71a665bfa7dd90fe61800c00e",
  2577. "reference": "677ae5e892b081e71a665bfa7dd90fe61800c00e",
  2578. "shasum": "",
  2579. "mirrors": [
  2580. {
  2581. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2582. "preferred": true
  2583. }
  2584. ]
  2585. },
  2586. "require": {
  2587. "php": "^5.5.9|>=7.0.8",
  2588. "symfony/polyfill-mbstring": "~1.1",
  2589. "symfony/polyfill-php70": "~1.6"
  2590. },
  2591. "require-dev": {
  2592. "symfony/expression-language": "~2.8|~3.0|~4.0"
  2593. },
  2594. "time": "2019-05-27T05:50:24+00:00",
  2595. "type": "library",
  2596. "extra": {
  2597. "branch-alias": {
  2598. "dev-master": "3.4-dev"
  2599. }
  2600. },
  2601. "installation-source": "dist",
  2602. "autoload": {
  2603. "psr-4": {
  2604. "Symfony\\Component\\HttpFoundation\\": ""
  2605. },
  2606. "exclude-from-classmap": [
  2607. "/Tests/"
  2608. ]
  2609. },
  2610. "notification-url": "https://packagist.org/downloads/",
  2611. "license": [
  2612. "MIT"
  2613. ],
  2614. "authors": [
  2615. {
  2616. "name": "Fabien Potencier",
  2617. "email": "fabien@symfony.com"
  2618. },
  2619. {
  2620. "name": "Symfony Community",
  2621. "homepage": "https://symfony.com/contributors"
  2622. }
  2623. ],
  2624. "description": "Symfony HttpFoundation Component",
  2625. "homepage": "https://symfony.com",
  2626. "install-path": "../symfony/http-foundation"
  2627. },
  2628. {
  2629. "name": "symfony/polyfill-mbstring",
  2630. "version": "v1.11.0",
  2631. "version_normalized": "1.11.0.0",
  2632. "source": {
  2633. "type": "git",
  2634. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2635. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
  2636. },
  2637. "dist": {
  2638. "type": "zip",
  2639. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
  2640. "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
  2641. "shasum": "",
  2642. "mirrors": [
  2643. {
  2644. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2645. "preferred": true
  2646. }
  2647. ]
  2648. },
  2649. "require": {
  2650. "php": ">=5.3.3"
  2651. },
  2652. "suggest": {
  2653. "ext-mbstring": "For best performance"
  2654. },
  2655. "time": "2019-02-06T07:57:58+00:00",
  2656. "type": "library",
  2657. "extra": {
  2658. "branch-alias": {
  2659. "dev-master": "1.11-dev"
  2660. }
  2661. },
  2662. "installation-source": "dist",
  2663. "autoload": {
  2664. "psr-4": {
  2665. "Symfony\\Polyfill\\Mbstring\\": ""
  2666. },
  2667. "files": [
  2668. "bootstrap.php"
  2669. ]
  2670. },
  2671. "notification-url": "https://packagist.org/downloads/",
  2672. "license": [
  2673. "MIT"
  2674. ],
  2675. "authors": [
  2676. {
  2677. "name": "Nicolas Grekas",
  2678. "email": "p@tchwork.com"
  2679. },
  2680. {
  2681. "name": "Symfony Community",
  2682. "homepage": "https://symfony.com/contributors"
  2683. }
  2684. ],
  2685. "description": "Symfony polyfill for the Mbstring extension",
  2686. "homepage": "https://symfony.com",
  2687. "keywords": [
  2688. "compatibility",
  2689. "mbstring",
  2690. "polyfill",
  2691. "portable",
  2692. "shim"
  2693. ],
  2694. "install-path": "../symfony/polyfill-mbstring"
  2695. },
  2696. {
  2697. "name": "symfony/polyfill-php70",
  2698. "version": "v1.11.0",
  2699. "version_normalized": "1.11.0.0",
  2700. "source": {
  2701. "type": "git",
  2702. "url": "https://github.com/symfony/polyfill-php70.git",
  2703. "reference": "bc4858fb611bda58719124ca079baff854149c89"
  2704. },
  2705. "dist": {
  2706. "type": "zip",
  2707. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/bc4858fb611bda58719124ca079baff854149c89",
  2708. "reference": "bc4858fb611bda58719124ca079baff854149c89",
  2709. "shasum": "",
  2710. "mirrors": [
  2711. {
  2712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2713. "preferred": true
  2714. }
  2715. ]
  2716. },
  2717. "require": {
  2718. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  2719. "php": ">=5.3.3"
  2720. },
  2721. "time": "2019-02-06T07:57:58+00:00",
  2722. "type": "library",
  2723. "extra": {
  2724. "branch-alias": {
  2725. "dev-master": "1.11-dev"
  2726. }
  2727. },
  2728. "installation-source": "dist",
  2729. "autoload": {
  2730. "psr-4": {
  2731. "Symfony\\Polyfill\\Php70\\": ""
  2732. },
  2733. "files": [
  2734. "bootstrap.php"
  2735. ],
  2736. "classmap": [
  2737. "Resources/stubs"
  2738. ]
  2739. },
  2740. "notification-url": "https://packagist.org/downloads/",
  2741. "license": [
  2742. "MIT"
  2743. ],
  2744. "authors": [
  2745. {
  2746. "name": "Nicolas Grekas",
  2747. "email": "p@tchwork.com"
  2748. },
  2749. {
  2750. "name": "Symfony Community",
  2751. "homepage": "https://symfony.com/contributors"
  2752. }
  2753. ],
  2754. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  2755. "homepage": "https://symfony.com",
  2756. "keywords": [
  2757. "compatibility",
  2758. "polyfill",
  2759. "portable",
  2760. "shim"
  2761. ],
  2762. "install-path": "../symfony/polyfill-php70"
  2763. },
  2764. {
  2765. "name": "symfony/polyfill-php72",
  2766. "version": "v1.11.0",
  2767. "version_normalized": "1.11.0.0",
  2768. "source": {
  2769. "type": "git",
  2770. "url": "https://github.com/symfony/polyfill-php72.git",
  2771. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c"
  2772. },
  2773. "dist": {
  2774. "type": "zip",
  2775. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  2776. "reference": "ab50dcf166d5f577978419edd37aa2bb8eabce0c",
  2777. "shasum": "",
  2778. "mirrors": [
  2779. {
  2780. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2781. "preferred": true
  2782. }
  2783. ]
  2784. },
  2785. "require": {
  2786. "php": ">=5.3.3"
  2787. },
  2788. "time": "2019-02-06T07:57:58+00:00",
  2789. "type": "library",
  2790. "extra": {
  2791. "branch-alias": {
  2792. "dev-master": "1.11-dev"
  2793. }
  2794. },
  2795. "installation-source": "dist",
  2796. "autoload": {
  2797. "psr-4": {
  2798. "Symfony\\Polyfill\\Php72\\": ""
  2799. },
  2800. "files": [
  2801. "bootstrap.php"
  2802. ]
  2803. },
  2804. "notification-url": "https://packagist.org/downloads/",
  2805. "license": [
  2806. "MIT"
  2807. ],
  2808. "authors": [
  2809. {
  2810. "name": "Nicolas Grekas",
  2811. "email": "p@tchwork.com"
  2812. },
  2813. {
  2814. "name": "Symfony Community",
  2815. "homepage": "https://symfony.com/contributors"
  2816. }
  2817. ],
  2818. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2819. "homepage": "https://symfony.com",
  2820. "keywords": [
  2821. "compatibility",
  2822. "polyfill",
  2823. "portable",
  2824. "shim"
  2825. ],
  2826. "install-path": "../symfony/polyfill-php72"
  2827. },
  2828. {
  2829. "name": "symfony/process",
  2830. "version": "v4.3.2",
  2831. "version_normalized": "4.3.2.0",
  2832. "source": {
  2833. "type": "git",
  2834. "url": "https://github.com/symfony/process.git",
  2835. "reference": "856d35814cf287480465bb7a6c413bb7f5f5e69c"
  2836. },
  2837. "dist": {
  2838. "type": "zip",
  2839. "url": "https://api.github.com/repos/symfony/process/zipball/856d35814cf287480465bb7a6c413bb7f5f5e69c",
  2840. "reference": "856d35814cf287480465bb7a6c413bb7f5f5e69c",
  2841. "shasum": "",
  2842. "mirrors": [
  2843. {
  2844. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2845. "preferred": true
  2846. }
  2847. ]
  2848. },
  2849. "require": {
  2850. "php": "^7.1.3"
  2851. },
  2852. "time": "2019-05-30T16:10:05+00:00",
  2853. "type": "library",
  2854. "extra": {
  2855. "branch-alias": {
  2856. "dev-master": "4.3-dev"
  2857. }
  2858. },
  2859. "installation-source": "dist",
  2860. "autoload": {
  2861. "psr-4": {
  2862. "Symfony\\Component\\Process\\": ""
  2863. },
  2864. "exclude-from-classmap": [
  2865. "/Tests/"
  2866. ]
  2867. },
  2868. "notification-url": "https://packagist.org/downloads/",
  2869. "license": [
  2870. "MIT"
  2871. ],
  2872. "authors": [
  2873. {
  2874. "name": "Fabien Potencier",
  2875. "email": "fabien@symfony.com"
  2876. },
  2877. {
  2878. "name": "Symfony Community",
  2879. "homepage": "https://symfony.com/contributors"
  2880. }
  2881. ],
  2882. "description": "Symfony Process Component",
  2883. "homepage": "https://symfony.com",
  2884. "install-path": "../symfony/process"
  2885. },
  2886. {
  2887. "name": "symfony/psr-http-message-bridge",
  2888. "version": "v1.2.0",
  2889. "version_normalized": "1.2.0.0",
  2890. "source": {
  2891. "type": "git",
  2892. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  2893. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad"
  2894. },
  2895. "dist": {
  2896. "type": "zip",
  2897. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  2898. "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad",
  2899. "shasum": "",
  2900. "mirrors": [
  2901. {
  2902. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2903. "preferred": true
  2904. }
  2905. ]
  2906. },
  2907. "require": {
  2908. "php": "^7.1",
  2909. "psr/http-message": "^1.0",
  2910. "symfony/http-foundation": "^3.4 || ^4.0"
  2911. },
  2912. "require-dev": {
  2913. "nyholm/psr7": "^1.1",
  2914. "symfony/phpunit-bridge": "^3.4.20 || ^4.0",
  2915. "zendframework/zend-diactoros": "^1.4.1 || ^2.0"
  2916. },
  2917. "suggest": {
  2918. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  2919. },
  2920. "time": "2019-03-11T18:22:33+00:00",
  2921. "type": "symfony-bridge",
  2922. "extra": {
  2923. "branch-alias": {
  2924. "dev-master": "1.2-dev"
  2925. }
  2926. },
  2927. "installation-source": "dist",
  2928. "autoload": {
  2929. "psr-4": {
  2930. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  2931. },
  2932. "exclude-from-classmap": [
  2933. "/Tests/"
  2934. ]
  2935. },
  2936. "notification-url": "https://packagist.org/downloads/",
  2937. "license": [
  2938. "MIT"
  2939. ],
  2940. "authors": [
  2941. {
  2942. "name": "Symfony Community",
  2943. "homepage": "http://symfony.com/contributors"
  2944. },
  2945. {
  2946. "name": "Fabien Potencier",
  2947. "email": "fabien@symfony.com"
  2948. }
  2949. ],
  2950. "description": "PSR HTTP message bridge",
  2951. "homepage": "http://symfony.com",
  2952. "keywords": [
  2953. "http",
  2954. "http-message",
  2955. "psr-17",
  2956. "psr-7"
  2957. ],
  2958. "install-path": "../symfony/psr-http-message-bridge"
  2959. },
  2960. {
  2961. "name": "symfony/translation",
  2962. "version": "v4.3.2",
  2963. "version_normalized": "4.3.2.0",
  2964. "source": {
  2965. "type": "git",
  2966. "url": "https://github.com/symfony/translation.git",
  2967. "reference": "934ab1d18545149e012aa898cf02e9f23790f7a0"
  2968. },
  2969. "dist": {
  2970. "type": "zip",
  2971. "url": "https://api.github.com/repos/symfony/translation/zipball/934ab1d18545149e012aa898cf02e9f23790f7a0",
  2972. "reference": "934ab1d18545149e012aa898cf02e9f23790f7a0",
  2973. "shasum": "",
  2974. "mirrors": [
  2975. {
  2976. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2977. "preferred": true
  2978. }
  2979. ]
  2980. },
  2981. "require": {
  2982. "php": "^7.1.3",
  2983. "symfony/polyfill-mbstring": "~1.0",
  2984. "symfony/translation-contracts": "^1.1.2"
  2985. },
  2986. "conflict": {
  2987. "symfony/config": "<3.4",
  2988. "symfony/dependency-injection": "<3.4",
  2989. "symfony/yaml": "<3.4"
  2990. },
  2991. "provide": {
  2992. "symfony/translation-implementation": "1.0"
  2993. },
  2994. "require-dev": {
  2995. "psr/log": "~1.0",
  2996. "symfony/config": "~3.4|~4.0",
  2997. "symfony/console": "~3.4|~4.0",
  2998. "symfony/dependency-injection": "~3.4|~4.0",
  2999. "symfony/finder": "~2.8|~3.0|~4.0",
  3000. "symfony/http-kernel": "~3.4|~4.0",
  3001. "symfony/intl": "~3.4|~4.0",
  3002. "symfony/service-contracts": "^1.1.2",
  3003. "symfony/var-dumper": "~3.4|~4.0",
  3004. "symfony/yaml": "~3.4|~4.0"
  3005. },
  3006. "suggest": {
  3007. "psr/log-implementation": "To use logging capability in translator",
  3008. "symfony/config": "",
  3009. "symfony/yaml": ""
  3010. },
  3011. "time": "2019-06-13T11:03:18+00:00",
  3012. "type": "library",
  3013. "extra": {
  3014. "branch-alias": {
  3015. "dev-master": "4.3-dev"
  3016. }
  3017. },
  3018. "installation-source": "dist",
  3019. "autoload": {
  3020. "psr-4": {
  3021. "Symfony\\Component\\Translation\\": ""
  3022. },
  3023. "exclude-from-classmap": [
  3024. "/Tests/"
  3025. ]
  3026. },
  3027. "notification-url": "https://packagist.org/downloads/",
  3028. "license": [
  3029. "MIT"
  3030. ],
  3031. "authors": [
  3032. {
  3033. "name": "Fabien Potencier",
  3034. "email": "fabien@symfony.com"
  3035. },
  3036. {
  3037. "name": "Symfony Community",
  3038. "homepage": "https://symfony.com/contributors"
  3039. }
  3040. ],
  3041. "description": "Symfony Translation Component",
  3042. "homepage": "https://symfony.com",
  3043. "install-path": "../symfony/translation"
  3044. },
  3045. {
  3046. "name": "symfony/translation-contracts",
  3047. "version": "v1.1.5",
  3048. "version_normalized": "1.1.5.0",
  3049. "source": {
  3050. "type": "git",
  3051. "url": "https://github.com/symfony/translation-contracts.git",
  3052. "reference": "cb4b18ad7b92a26e83b65dde940fab78339e6f3c"
  3053. },
  3054. "dist": {
  3055. "type": "zip",
  3056. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/cb4b18ad7b92a26e83b65dde940fab78339e6f3c",
  3057. "reference": "cb4b18ad7b92a26e83b65dde940fab78339e6f3c",
  3058. "shasum": "",
  3059. "mirrors": [
  3060. {
  3061. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3062. "preferred": true
  3063. }
  3064. ]
  3065. },
  3066. "require": {
  3067. "php": "^7.1.3"
  3068. },
  3069. "suggest": {
  3070. "symfony/translation-implementation": ""
  3071. },
  3072. "time": "2019-06-13T11:15:36+00:00",
  3073. "type": "library",
  3074. "extra": {
  3075. "branch-alias": {
  3076. "dev-master": "1.1-dev"
  3077. }
  3078. },
  3079. "installation-source": "dist",
  3080. "autoload": {
  3081. "psr-4": {
  3082. "Symfony\\Contracts\\Translation\\": ""
  3083. }
  3084. },
  3085. "notification-url": "https://packagist.org/downloads/",
  3086. "license": [
  3087. "MIT"
  3088. ],
  3089. "authors": [
  3090. {
  3091. "name": "Nicolas Grekas",
  3092. "email": "p@tchwork.com"
  3093. },
  3094. {
  3095. "name": "Symfony Community",
  3096. "homepage": "https://symfony.com/contributors"
  3097. }
  3098. ],
  3099. "description": "Generic abstractions related to translation",
  3100. "homepage": "https://symfony.com",
  3101. "keywords": [
  3102. "abstractions",
  3103. "contracts",
  3104. "decoupling",
  3105. "interfaces",
  3106. "interoperability",
  3107. "standards"
  3108. ],
  3109. "install-path": "../symfony/translation-contracts"
  3110. },
  3111. {
  3112. "name": "symfony/var-dumper",
  3113. "version": "v4.3.1",
  3114. "version_normalized": "4.3.1.0",
  3115. "source": {
  3116. "type": "git",
  3117. "url": "https://github.com/symfony/var-dumper.git",
  3118. "reference": "f974f448154928d2b5fb7c412bd23b81d063f34b"
  3119. },
  3120. "dist": {
  3121. "type": "zip",
  3122. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/f974f448154928d2b5fb7c412bd23b81d063f34b",
  3123. "reference": "f974f448154928d2b5fb7c412bd23b81d063f34b",
  3124. "shasum": "",
  3125. "mirrors": [
  3126. {
  3127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3128. "preferred": true
  3129. }
  3130. ]
  3131. },
  3132. "require": {
  3133. "php": "^7.1.3",
  3134. "symfony/polyfill-mbstring": "~1.0",
  3135. "symfony/polyfill-php72": "~1.5"
  3136. },
  3137. "conflict": {
  3138. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  3139. "symfony/console": "<3.4"
  3140. },
  3141. "require-dev": {
  3142. "ext-iconv": "*",
  3143. "symfony/console": "~3.4|~4.0",
  3144. "symfony/process": "~3.4|~4.0",
  3145. "twig/twig": "~1.34|~2.4"
  3146. },
  3147. "suggest": {
  3148. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  3149. "ext-intl": "To show region name in time zone dump",
  3150. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  3151. },
  3152. "time": "2019-06-05T02:08:12+00:00",
  3153. "bin": [
  3154. "Resources/bin/var-dump-server"
  3155. ],
  3156. "type": "library",
  3157. "extra": {
  3158. "branch-alias": {
  3159. "dev-master": "4.3-dev"
  3160. }
  3161. },
  3162. "installation-source": "dist",
  3163. "autoload": {
  3164. "files": [
  3165. "Resources/functions/dump.php"
  3166. ],
  3167. "psr-4": {
  3168. "Symfony\\Component\\VarDumper\\": ""
  3169. },
  3170. "exclude-from-classmap": [
  3171. "/Tests/"
  3172. ]
  3173. },
  3174. "notification-url": "https://packagist.org/downloads/",
  3175. "license": [
  3176. "MIT"
  3177. ],
  3178. "authors": [
  3179. {
  3180. "name": "Nicolas Grekas",
  3181. "email": "p@tchwork.com"
  3182. },
  3183. {
  3184. "name": "Symfony Community",
  3185. "homepage": "https://symfony.com/contributors"
  3186. }
  3187. ],
  3188. "description": "Symfony mechanism for exploring and dumping PHP variables",
  3189. "homepage": "https://symfony.com",
  3190. "keywords": [
  3191. "debug",
  3192. "dump"
  3193. ],
  3194. "install-path": "../symfony/var-dumper"
  3195. },
  3196. {
  3197. "name": "topthink/framework",
  3198. "version": "v6.0.0",
  3199. "version_normalized": "6.0.0.0",
  3200. "source": {
  3201. "type": "git",
  3202. "url": "https://github.com/top-think/framework.git",
  3203. "reference": "79c555aab0313d1a33ddcdb3c395f2c47f37f597"
  3204. },
  3205. "dist": {
  3206. "type": "zip",
  3207. "url": "https://api.github.com/repos/top-think/framework/zipball/79c555aab0313d1a33ddcdb3c395f2c47f37f597",
  3208. "reference": "79c555aab0313d1a33ddcdb3c395f2c47f37f597",
  3209. "shasum": "",
  3210. "mirrors": [
  3211. {
  3212. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3213. "preferred": true
  3214. }
  3215. ]
  3216. },
  3217. "require": {
  3218. "ext-json": "*",
  3219. "ext-mbstring": "*",
  3220. "league/flysystem": "^1.0",
  3221. "league/flysystem-cached-adapter": "^1.0",
  3222. "opis/closure": "^3.1",
  3223. "php": ">=7.1.0",
  3224. "psr/container": "~1.0",
  3225. "psr/log": "~1.0",
  3226. "psr/simple-cache": "^1.0",
  3227. "topthink/think-helper": "^3.1.1",
  3228. "topthink/think-orm": "^2.0"
  3229. },
  3230. "require-dev": {
  3231. "mikey179/vfsstream": "^1.6",
  3232. "mockery/mockery": "^1.2",
  3233. "phpunit/phpunit": "^7.0"
  3234. },
  3235. "time": "2019-10-23T23:28:43+00:00",
  3236. "type": "library",
  3237. "installation-source": "dist",
  3238. "autoload": {
  3239. "files": [],
  3240. "psr-4": {
  3241. "think\\": "src/think/"
  3242. }
  3243. },
  3244. "notification-url": "https://packagist.org/downloads/",
  3245. "license": [
  3246. "Apache-2.0"
  3247. ],
  3248. "authors": [
  3249. {
  3250. "name": "liu21st",
  3251. "email": "liu21st@gmail.com"
  3252. },
  3253. {
  3254. "name": "yunwuxin",
  3255. "email": "448901948@qq.com"
  3256. }
  3257. ],
  3258. "description": "The ThinkPHP Framework.",
  3259. "homepage": "http://thinkphp.cn/",
  3260. "keywords": [
  3261. "framework",
  3262. "orm",
  3263. "thinkphp"
  3264. ],
  3265. "install-path": "../topthink/framework"
  3266. },
  3267. {
  3268. "name": "topthink/think-captcha",
  3269. "version": "v3.0.1",
  3270. "version_normalized": "3.0.1.0",
  3271. "source": {
  3272. "type": "git",
  3273. "url": "https://github.com/top-think/think-captcha.git",
  3274. "reference": "9fc0c627d773f6a54a8dd142ebf358f746557a48"
  3275. },
  3276. "dist": {
  3277. "type": "zip",
  3278. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/9fc0c627d773f6a54a8dd142ebf358f746557a48",
  3279. "reference": "9fc0c627d773f6a54a8dd142ebf358f746557a48",
  3280. "shasum": "",
  3281. "mirrors": [
  3282. {
  3283. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3284. "preferred": true
  3285. }
  3286. ]
  3287. },
  3288. "require": {
  3289. "topthink/framework": "^6.0.0"
  3290. },
  3291. "time": "2019-06-06T07:16:01+00:00",
  3292. "type": "library",
  3293. "extra": {
  3294. "think": {
  3295. "services": [
  3296. "think\\captcha\\CaptchaService"
  3297. ]
  3298. }
  3299. },
  3300. "installation-source": "dist",
  3301. "autoload": {
  3302. "psr-4": {
  3303. "think\\captcha\\": "src/"
  3304. },
  3305. "files": [
  3306. "src/helper.php"
  3307. ]
  3308. },
  3309. "notification-url": "https://packagist.org/downloads/",
  3310. "license": [
  3311. "Apache-2.0"
  3312. ],
  3313. "authors": [
  3314. {
  3315. "name": "yunwuxin",
  3316. "email": "448901948@qq.com"
  3317. }
  3318. ],
  3319. "description": "captcha package for thinkphp",
  3320. "install-path": "../topthink/think-captcha"
  3321. },
  3322. {
  3323. "name": "topthink/think-factory",
  3324. "version": "v1.0.1",
  3325. "version_normalized": "1.0.1.0",
  3326. "source": {
  3327. "type": "git",
  3328. "url": "https://github.com/top-think/think-factory.git",
  3329. "reference": "b8080a6472aae1cff47ceb8c30feec3c2835364b"
  3330. },
  3331. "dist": {
  3332. "type": "zip",
  3333. "url": "https://api.github.com/repos/top-think/think-factory/zipball/b8080a6472aae1cff47ceb8c30feec3c2835364b",
  3334. "reference": "b8080a6472aae1cff47ceb8c30feec3c2835364b",
  3335. "shasum": "",
  3336. "mirrors": [
  3337. {
  3338. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3339. "preferred": true
  3340. }
  3341. ]
  3342. },
  3343. "require": {
  3344. "topthink/framework": "^6.0.0",
  3345. "topthink/think-helper": "^3.0.0"
  3346. },
  3347. "time": "2019-04-15T06:55:28+00:00",
  3348. "type": "library",
  3349. "installation-source": "dist",
  3350. "autoload": {
  3351. "psr-4": {
  3352. "think\\": "src"
  3353. }
  3354. },
  3355. "notification-url": "https://packagist.org/downloads/",
  3356. "license": [
  3357. "Apache-2.0"
  3358. ],
  3359. "authors": [
  3360. {
  3361. "name": "yunwuxin",
  3362. "email": "448901948@qq.com"
  3363. }
  3364. ],
  3365. "install-path": "../topthink/think-factory"
  3366. },
  3367. {
  3368. "name": "topthink/think-helper",
  3369. "version": "v3.1.3",
  3370. "version_normalized": "3.1.3.0",
  3371. "source": {
  3372. "type": "git",
  3373. "url": "https://github.com/top-think/think-helper.git",
  3374. "reference": "4d85dfd3778623bbb1de3648f1dcd0c82f4439f4"
  3375. },
  3376. "dist": {
  3377. "type": "zip",
  3378. "url": "https://api.github.com/repos/top-think/think-helper/zipball/4d85dfd3778623bbb1de3648f1dcd0c82f4439f4",
  3379. "reference": "4d85dfd3778623bbb1de3648f1dcd0c82f4439f4",
  3380. "shasum": "",
  3381. "mirrors": [
  3382. {
  3383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3384. "preferred": true
  3385. }
  3386. ]
  3387. },
  3388. "require": {
  3389. "php": ">=7.1.0"
  3390. },
  3391. "time": "2019-09-30T02:36:48+00:00",
  3392. "type": "library",
  3393. "installation-source": "dist",
  3394. "autoload": {
  3395. "psr-4": {
  3396. "think\\": "src"
  3397. },
  3398. "files": [
  3399. "src/helper.php"
  3400. ]
  3401. },
  3402. "notification-url": "https://packagist.org/downloads/",
  3403. "license": [
  3404. "Apache-2.0"
  3405. ],
  3406. "authors": [
  3407. {
  3408. "name": "yunwuxin",
  3409. "email": "448901948@qq.com"
  3410. }
  3411. ],
  3412. "description": "The ThinkPHP6 Helper Package",
  3413. "install-path": "../topthink/think-helper"
  3414. },
  3415. {
  3416. "name": "topthink/think-image",
  3417. "version": "v1.0.7",
  3418. "version_normalized": "1.0.7.0",
  3419. "source": {
  3420. "type": "git",
  3421. "url": "https://github.com/top-think/think-image.git",
  3422. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512"
  3423. },
  3424. "dist": {
  3425. "type": "zip",
  3426. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  3427. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  3428. "shasum": "",
  3429. "mirrors": [
  3430. {
  3431. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3432. "preferred": true
  3433. }
  3434. ]
  3435. },
  3436. "require": {
  3437. "ext-gd": "*"
  3438. },
  3439. "require-dev": {
  3440. "phpunit/phpunit": "4.8.*",
  3441. "topthink/framework": "^5.0"
  3442. },
  3443. "time": "2016-09-29T06:05:43+00:00",
  3444. "type": "library",
  3445. "installation-source": "dist",
  3446. "autoload": {
  3447. "psr-4": {
  3448. "think\\": "src"
  3449. }
  3450. },
  3451. "notification-url": "https://packagist.org/downloads/",
  3452. "license": [
  3453. "Apache-2.0"
  3454. ],
  3455. "authors": [
  3456. {
  3457. "name": "yunwuxin",
  3458. "email": "448901948@qq.com"
  3459. }
  3460. ],
  3461. "description": "The ThinkPHP5 Image Package",
  3462. "install-path": "../topthink/think-image"
  3463. },
  3464. {
  3465. "name": "topthink/think-multi-app",
  3466. "version": "v1.0.11",
  3467. "version_normalized": "1.0.11.0",
  3468. "source": {
  3469. "type": "git",
  3470. "url": "https://github.com/top-think/think-multi-app.git",
  3471. "reference": "215f4a6bb88e53ad41b448c61957336eb55ce6f9"
  3472. },
  3473. "dist": {
  3474. "type": "zip",
  3475. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/215f4a6bb88e53ad41b448c61957336eb55ce6f9",
  3476. "reference": "215f4a6bb88e53ad41b448c61957336eb55ce6f9",
  3477. "shasum": "",
  3478. "mirrors": [
  3479. {
  3480. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3481. "preferred": true
  3482. }
  3483. ]
  3484. },
  3485. "require": {
  3486. "php": ">=7.1.0",
  3487. "topthink/framework": "^6.0.0"
  3488. },
  3489. "time": "2019-10-29T06:34:59+00:00",
  3490. "type": "library",
  3491. "extra": {
  3492. "think": {
  3493. "services": [
  3494. "think\\app\\Service"
  3495. ]
  3496. }
  3497. },
  3498. "installation-source": "dist",
  3499. "autoload": {
  3500. "psr-4": {
  3501. "think\\app\\": "src"
  3502. }
  3503. },
  3504. "notification-url": "https://packagist.org/downloads/",
  3505. "license": [
  3506. "Apache-2.0"
  3507. ],
  3508. "authors": [
  3509. {
  3510. "name": "liu21st",
  3511. "email": "liu21st@gmail.com"
  3512. }
  3513. ],
  3514. "description": "thinkphp6 multi app support",
  3515. "install-path": "../topthink/think-multi-app"
  3516. },
  3517. {
  3518. "name": "topthink/think-orm",
  3519. "version": "v2.0.27",
  3520. "version_normalized": "2.0.27.0",
  3521. "source": {
  3522. "type": "git",
  3523. "url": "https://github.com/top-think/think-orm.git",
  3524. "reference": "02affaaccade2cdd8bbb2d2f5d15e46113e6eb50"
  3525. },
  3526. "dist": {
  3527. "type": "zip",
  3528. "url": "https://api.github.com/repos/top-think/think-orm/zipball/02affaaccade2cdd8bbb2d2f5d15e46113e6eb50",
  3529. "reference": "02affaaccade2cdd8bbb2d2f5d15e46113e6eb50",
  3530. "shasum": "",
  3531. "mirrors": [
  3532. {
  3533. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3534. "preferred": true
  3535. }
  3536. ]
  3537. },
  3538. "require": {
  3539. "ext-json": "*",
  3540. "php": ">=7.1.0",
  3541. "psr/log": "~1.0",
  3542. "psr/simple-cache": "^1.0",
  3543. "topthink/think-helper": "^3.1"
  3544. },
  3545. "time": "2019-10-23T02:16:50+00:00",
  3546. "type": "library",
  3547. "installation-source": "dist",
  3548. "autoload": {
  3549. "psr-4": {
  3550. "think\\": "src"
  3551. },
  3552. "files": []
  3553. },
  3554. "notification-url": "https://packagist.org/downloads/",
  3555. "license": [
  3556. "Apache-2.0"
  3557. ],
  3558. "authors": [
  3559. {
  3560. "name": "liu21st",
  3561. "email": "liu21st@gmail.com"
  3562. }
  3563. ],
  3564. "description": "think orm",
  3565. "keywords": [
  3566. "database",
  3567. "orm"
  3568. ],
  3569. "install-path": "../topthink/think-orm"
  3570. },
  3571. {
  3572. "name": "topthink/think-queue",
  3573. "version": "v3.0.2",
  3574. "version_normalized": "3.0.2.0",
  3575. "source": {
  3576. "type": "git",
  3577. "url": "https://github.com/top-think/think-queue.git",
  3578. "reference": "c34b983abce9427fca7e30ac983b75041f436ad0"
  3579. },
  3580. "dist": {
  3581. "type": "zip",
  3582. "url": "https://api.github.com/repos/top-think/think-queue/zipball/c34b983abce9427fca7e30ac983b75041f436ad0",
  3583. "reference": "c34b983abce9427fca7e30ac983b75041f436ad0",
  3584. "shasum": "",
  3585. "mirrors": [
  3586. {
  3587. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3588. "preferred": true
  3589. }
  3590. ]
  3591. },
  3592. "require": {
  3593. "nesbot/carbon": "^2.16",
  3594. "symfony/process": "^4.2",
  3595. "topthink/framework": "^6.0.0",
  3596. "topthink/think-factory": "^1.0.0",
  3597. "topthink/think-helper": "^3.0.4"
  3598. },
  3599. "require-dev": {
  3600. "mockery/mockery": "^1.2",
  3601. "phpunit/phpunit": "^6.2",
  3602. "topthink/think-migration": "^3.0.0"
  3603. },
  3604. "time": "2019-06-06T10:41:07+00:00",
  3605. "type": "library",
  3606. "extra": {
  3607. "think": {
  3608. "services": [
  3609. "think\\queue\\Service"
  3610. ],
  3611. "config": {
  3612. "queue": "src/config.php"
  3613. }
  3614. }
  3615. },
  3616. "installation-source": "dist",
  3617. "autoload": {
  3618. "psr-4": {
  3619. "think\\": "src"
  3620. },
  3621. "files": [
  3622. "src/common.php"
  3623. ]
  3624. },
  3625. "notification-url": "https://packagist.org/downloads/",
  3626. "license": [
  3627. "Apache-2.0"
  3628. ],
  3629. "authors": [
  3630. {
  3631. "name": "yunwuxin",
  3632. "email": "448901948@qq.com"
  3633. }
  3634. ],
  3635. "description": "The ThinkPHP5 Queue Package",
  3636. "install-path": "../topthink/think-queue"
  3637. },
  3638. {
  3639. "name": "topthink/think-template",
  3640. "version": "v2.0.7",
  3641. "version_normalized": "2.0.7.0",
  3642. "source": {
  3643. "type": "git",
  3644. "url": "https://github.com/top-think/think-template.git",
  3645. "reference": "e98bdbb4a4c94b442f17dfceba81e0134d4fbd19"
  3646. },
  3647. "dist": {
  3648. "type": "zip",
  3649. "url": "https://api.github.com/repos/top-think/think-template/zipball/e98bdbb4a4c94b442f17dfceba81e0134d4fbd19",
  3650. "reference": "e98bdbb4a4c94b442f17dfceba81e0134d4fbd19",
  3651. "shasum": "",
  3652. "mirrors": [
  3653. {
  3654. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3655. "preferred": true
  3656. }
  3657. ]
  3658. },
  3659. "require": {
  3660. "php": ">=7.1.0",
  3661. "psr/simple-cache": "^1.0"
  3662. },
  3663. "time": "2019-09-20T15:31:04+00:00",
  3664. "type": "library",
  3665. "installation-source": "dist",
  3666. "autoload": {
  3667. "psr-4": {
  3668. "think\\": "src"
  3669. }
  3670. },
  3671. "notification-url": "https://packagist.org/downloads/",
  3672. "license": [
  3673. "Apache-2.0"
  3674. ],
  3675. "authors": [
  3676. {
  3677. "name": "liu21st",
  3678. "email": "liu21st@gmail.com"
  3679. }
  3680. ],
  3681. "description": "the php template engine",
  3682. "install-path": "../topthink/think-template"
  3683. },
  3684. {
  3685. "name": "topthink/think-view",
  3686. "version": "v1.0.13",
  3687. "version_normalized": "1.0.13.0",
  3688. "source": {
  3689. "type": "git",
  3690. "url": "https://github.com/top-think/think-view.git",
  3691. "reference": "90803b73f781db5d42619082c4597afc58b2d4c5"
  3692. },
  3693. "dist": {
  3694. "type": "zip",
  3695. "url": "https://api.github.com/repos/top-think/think-view/zipball/90803b73f781db5d42619082c4597afc58b2d4c5",
  3696. "reference": "90803b73f781db5d42619082c4597afc58b2d4c5",
  3697. "shasum": "",
  3698. "mirrors": [
  3699. {
  3700. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3701. "preferred": true
  3702. }
  3703. ]
  3704. },
  3705. "require": {
  3706. "php": ">=7.1.0",
  3707. "topthink/think-template": "^2.0"
  3708. },
  3709. "time": "2019-10-07T12:23:10+00:00",
  3710. "type": "library",
  3711. "installation-source": "dist",
  3712. "autoload": {
  3713. "psr-4": {
  3714. "think\\view\\driver\\": "src"
  3715. }
  3716. },
  3717. "notification-url": "https://packagist.org/downloads/",
  3718. "license": [
  3719. "Apache-2.0"
  3720. ],
  3721. "authors": [
  3722. {
  3723. "name": "liu21st",
  3724. "email": "liu21st@gmail.com"
  3725. }
  3726. ],
  3727. "description": "thinkphp template driver",
  3728. "install-path": "../topthink/think-view"
  3729. },
  3730. {
  3731. "name": "workerman/channel",
  3732. "version": "v1.0.5",
  3733. "version_normalized": "1.0.5.0",
  3734. "source": {
  3735. "type": "git",
  3736. "url": "https://github.com/walkor/Channel.git",
  3737. "reference": "0836a9a413c6e8425ee36307d95e2e49cc380f50"
  3738. },
  3739. "dist": {
  3740. "type": "zip",
  3741. "url": "https://api.github.com/repos/walkor/Channel/zipball/0836a9a413c6e8425ee36307d95e2e49cc380f50",
  3742. "reference": "0836a9a413c6e8425ee36307d95e2e49cc380f50",
  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. "workerman/workerman": ">=3.3.0"
  3753. },
  3754. "time": "2018-07-02T02:42:37+00:00",
  3755. "type": "library",
  3756. "installation-source": "dist",
  3757. "autoload": {
  3758. "psr-4": {
  3759. "Channel\\": "./src"
  3760. }
  3761. },
  3762. "notification-url": "https://packagist.org/downloads/",
  3763. "license": [
  3764. "MIT"
  3765. ],
  3766. "homepage": "http://www.workerman.net",
  3767. "install-path": "../workerman/channel"
  3768. },
  3769. {
  3770. "name": "workerman/workerman",
  3771. "version": "v3.5.19",
  3772. "version_normalized": "3.5.19.0",
  3773. "source": {
  3774. "type": "git",
  3775. "url": "https://github.com/walkor/Workerman.git",
  3776. "reference": "4e5c24073b431fd950287efbfb5cc9b4c0fc7367"
  3777. },
  3778. "dist": {
  3779. "type": "zip",
  3780. "url": "https://api.github.com/repos/walkor/Workerman/zipball/4e5c24073b431fd950287efbfb5cc9b4c0fc7367",
  3781. "reference": "4e5c24073b431fd950287efbfb5cc9b4c0fc7367",
  3782. "shasum": "",
  3783. "mirrors": [
  3784. {
  3785. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3786. "preferred": true
  3787. }
  3788. ]
  3789. },
  3790. "require": {
  3791. "php": ">=5.3"
  3792. },
  3793. "suggest": {
  3794. "ext-event": "For better performance. "
  3795. },
  3796. "time": "2019-04-05T10:35:31+00:00",
  3797. "type": "library",
  3798. "installation-source": "dist",
  3799. "autoload": {
  3800. "psr-4": {
  3801. "Workerman\\": "./"
  3802. }
  3803. },
  3804. "notification-url": "https://packagist.org/downloads/",
  3805. "license": [
  3806. "MIT"
  3807. ],
  3808. "authors": [
  3809. {
  3810. "name": "walkor",
  3811. "email": "walkor@workerman.net",
  3812. "homepage": "http://www.workerman.net",
  3813. "role": "Developer"
  3814. }
  3815. ],
  3816. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  3817. "homepage": "http://www.workerman.net",
  3818. "keywords": [
  3819. "asynchronous",
  3820. "event-loop"
  3821. ],
  3822. "install-path": "../workerman/workerman"
  3823. },
  3824. {
  3825. "name": "xaboy/form-builder",
  3826. "version": "1.2.10",
  3827. "version_normalized": "1.2.10.0",
  3828. "source": {
  3829. "type": "git",
  3830. "url": "https://github.com/xaboy/form-builder.git",
  3831. "reference": "198c5f066499eef8b005f5d504fcb6120fa3ac04"
  3832. },
  3833. "dist": {
  3834. "type": "zip",
  3835. "url": "https://api.github.com/repos/xaboy/form-builder/zipball/198c5f066499eef8b005f5d504fcb6120fa3ac04",
  3836. "reference": "198c5f066499eef8b005f5d504fcb6120fa3ac04",
  3837. "shasum": "",
  3838. "mirrors": [
  3839. {
  3840. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3841. "preferred": true
  3842. }
  3843. ]
  3844. },
  3845. "require": {
  3846. "ext-json": "*",
  3847. "php": ">=5.4.0"
  3848. },
  3849. "time": "2019-08-26T09:34:17+00:00",
  3850. "type": "library",
  3851. "installation-source": "dist",
  3852. "autoload": {
  3853. "psr-4": {
  3854. "FormBuilder\\": "./src/"
  3855. }
  3856. },
  3857. "notification-url": "https://packagist.org/downloads/",
  3858. "license": [
  3859. "MIT"
  3860. ],
  3861. "authors": [
  3862. {
  3863. "name": "xaboy",
  3864. "email": "xaboy2005@qq.com"
  3865. }
  3866. ],
  3867. "description": "PHP表单生成器,快速生成现代化的form表单。包含复选框、单选框、输入框、下拉选择框等元素以及,省市区三级联动,时间选择,日期选择,颜色选择,文件/图片上传等功能。",
  3868. "homepage": "https://github.com/xaboy/form-builder",
  3869. "install-path": "../xaboy/form-builder"
  3870. },
  3871. {
  3872. "name": "xin/container",
  3873. "version": "2.0.1",
  3874. "version_normalized": "2.0.1.0",
  3875. "source": {
  3876. "type": "git",
  3877. "url": "https://gitee.com/liuxiaojinla/php-container",
  3878. "reference": "97bb67f87dd851545938a1f2fe0ffbd379e3ff81"
  3879. },
  3880. "require": {
  3881. "ext-ctype": "*",
  3882. "ext-iconv": "*",
  3883. "ext-json": "*",
  3884. "ext-libxml": "*",
  3885. "ext-mbstring": "*",
  3886. "ext-openssl": "*",
  3887. "ext-simplexml": "*",
  3888. "psr/container": "^1.0",
  3889. "xin/helper": "^1.0"
  3890. },
  3891. "time": "2019-10-21T03:51:25+00:00",
  3892. "type": "library",
  3893. "installation-source": "source",
  3894. "autoload": {
  3895. "psr-4": {
  3896. "xin\\container\\": "src/"
  3897. }
  3898. },
  3899. "notification-url": "https://packagist.org/downloads/",
  3900. "license": [
  3901. "Apache-2.0"
  3902. ],
  3903. "authors": [
  3904. {
  3905. "name": "晋",
  3906. "email": "657306123@qq.com"
  3907. }
  3908. ],
  3909. "description": "严格基于PSR11规范实现基础的容器和依赖注入",
  3910. "install-path": "../xin/container"
  3911. },
  3912. {
  3913. "name": "xin/helper",
  3914. "version": "1.0.0",
  3915. "version_normalized": "1.0.0.0",
  3916. "source": {
  3917. "type": "git",
  3918. "url": "https://gitee.com/liuxiaojinla/php-helper",
  3919. "reference": "02a58132dae2aea2d1c0b8e66f55125969224747"
  3920. },
  3921. "require": {
  3922. "ext-ctype": "*",
  3923. "ext-iconv": "*",
  3924. "ext-json": "*",
  3925. "ext-libxml": "*",
  3926. "ext-mbstring": "*",
  3927. "ext-openssl": "*",
  3928. "ext-simplexml": "*"
  3929. },
  3930. "time": "2019-06-22T08:28:23+00:00",
  3931. "type": "library",
  3932. "installation-source": "source",
  3933. "autoload": {
  3934. "psr-4": {
  3935. "xin\\helper\\": "src/"
  3936. }
  3937. },
  3938. "notification-url": "https://packagist.org/downloads/",
  3939. "license": [
  3940. "Apache-2.0"
  3941. ],
  3942. "authors": [
  3943. {
  3944. "name": "晋",
  3945. "email": "1540175452@qq.com"
  3946. }
  3947. ],
  3948. "description": "PHP项目日常开发必备基础库,数组工具类、字符串工具类、数字工具类、函数工具类、服务器工具类、加密工具类",
  3949. "install-path": "../xin/helper"
  3950. }
  3951. ],
  3952. "dev": true,
  3953. "dev-package-names": []
  3954. }