123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "be88c2f2950036f6f704bc1e95975850",
  8. "packages": [
  9. {
  10. "name": "doctrine/instantiator",
  11. "version": "1.4.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/doctrine/instantiator.git",
  15. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  20. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": "^7.1 || ^8.0"
  31. },
  32. "require-dev": {
  33. "doctrine/coding-standard": "^8.0",
  34. "ext-pdo": "*",
  35. "ext-phar": "*",
  36. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  37. "phpstan/phpstan": "^0.12",
  38. "phpstan/phpstan-phpunit": "^0.12",
  39. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  40. },
  41. "type": "library",
  42. "autoload": {
  43. "psr-4": {
  44. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  45. }
  46. },
  47. "notification-url": "https://packagist.org/downloads/",
  48. "license": [
  49. "MIT"
  50. ],
  51. "authors": [
  52. {
  53. "name": "Marco Pivetta",
  54. "email": "ocramius@gmail.com",
  55. "homepage": "https://ocramius.github.io/"
  56. }
  57. ],
  58. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  59. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  60. "keywords": [
  61. "constructor",
  62. "instantiate"
  63. ],
  64. "support": {
  65. "issues": "https://github.com/doctrine/instantiator/issues",
  66. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  67. },
  68. "funding": [
  69. {
  70. "url": "https://www.doctrine-project.org/sponsorship.html",
  71. "type": "custom"
  72. },
  73. {
  74. "url": "https://www.patreon.com/phpdoctrine",
  75. "type": "patreon"
  76. },
  77. {
  78. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  79. "type": "tidelift"
  80. }
  81. ],
  82. "time": "2020-11-10T18:47:58+00:00"
  83. },
  84. {
  85. "name": "markbaker/complex",
  86. "version": "1.5.0",
  87. "source": {
  88. "type": "git",
  89. "url": "https://github.com/MarkBaker/PHPComplex.git",
  90. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2"
  91. },
  92. "dist": {
  93. "type": "zip",
  94. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  95. "reference": "c3131244e29c08d44fefb49e0dd35021e9e39dd2",
  96. "shasum": "",
  97. "mirrors": [
  98. {
  99. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  100. "preferred": true
  101. }
  102. ]
  103. },
  104. "require": {
  105. "php": "^5.6.0|^7.0"
  106. },
  107. "require-dev": {
  108. "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
  109. "phpcompatibility/php-compatibility": "^9.0",
  110. "phpdocumentor/phpdocumentor": "2.*",
  111. "phploc/phploc": "^4.0|^5.0|^6.0|^7.0",
  112. "phpmd/phpmd": "2.*",
  113. "phpunit/phpunit": "^4.8.35|^5.0|^6.0|^7.0",
  114. "sebastian/phpcpd": "2.*",
  115. "squizlabs/php_codesniffer": "^3.4.0"
  116. },
  117. "type": "library",
  118. "autoload": {
  119. "psr-4": {
  120. "Complex\\": "classes/src/"
  121. },
  122. "files": [
  123. "classes/src/functions/abs.php",
  124. "classes/src/functions/acos.php",
  125. "classes/src/functions/acosh.php",
  126. "classes/src/functions/acot.php",
  127. "classes/src/functions/acoth.php",
  128. "classes/src/functions/acsc.php",
  129. "classes/src/functions/acsch.php",
  130. "classes/src/functions/argument.php",
  131. "classes/src/functions/asec.php",
  132. "classes/src/functions/asech.php",
  133. "classes/src/functions/asin.php",
  134. "classes/src/functions/asinh.php",
  135. "classes/src/functions/atan.php",
  136. "classes/src/functions/atanh.php",
  137. "classes/src/functions/conjugate.php",
  138. "classes/src/functions/cos.php",
  139. "classes/src/functions/cosh.php",
  140. "classes/src/functions/cot.php",
  141. "classes/src/functions/coth.php",
  142. "classes/src/functions/csc.php",
  143. "classes/src/functions/csch.php",
  144. "classes/src/functions/exp.php",
  145. "classes/src/functions/inverse.php",
  146. "classes/src/functions/ln.php",
  147. "classes/src/functions/log2.php",
  148. "classes/src/functions/log10.php",
  149. "classes/src/functions/negative.php",
  150. "classes/src/functions/pow.php",
  151. "classes/src/functions/rho.php",
  152. "classes/src/functions/sec.php",
  153. "classes/src/functions/sech.php",
  154. "classes/src/functions/sin.php",
  155. "classes/src/functions/sinh.php",
  156. "classes/src/functions/sqrt.php",
  157. "classes/src/functions/tan.php",
  158. "classes/src/functions/tanh.php",
  159. "classes/src/functions/theta.php",
  160. "classes/src/operations/add.php",
  161. "classes/src/operations/subtract.php",
  162. "classes/src/operations/multiply.php",
  163. "classes/src/operations/divideby.php",
  164. "classes/src/operations/divideinto.php"
  165. ]
  166. },
  167. "notification-url": "https://packagist.org/downloads/",
  168. "license": [
  169. "MIT"
  170. ],
  171. "authors": [
  172. {
  173. "name": "Mark Baker",
  174. "email": "mark@lange.demon.co.uk"
  175. }
  176. ],
  177. "description": "PHP Class for working with complex numbers",
  178. "homepage": "https://github.com/MarkBaker/PHPComplex",
  179. "keywords": [
  180. "complex",
  181. "mathematics"
  182. ],
  183. "support": {
  184. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  185. "source": "https://github.com/MarkBaker/PHPComplex/tree/1.5.0"
  186. },
  187. "time": "2020-08-26T19:47:57+00:00"
  188. },
  189. {
  190. "name": "markbaker/matrix",
  191. "version": "1.2.3",
  192. "source": {
  193. "type": "git",
  194. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  195. "reference": "44bb1ab01811116f01fe216ab37d921dccc6c10d"
  196. },
  197. "dist": {
  198. "type": "zip",
  199. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/44bb1ab01811116f01fe216ab37d921dccc6c10d",
  200. "reference": "44bb1ab01811116f01fe216ab37d921dccc6c10d",
  201. "shasum": "",
  202. "mirrors": [
  203. {
  204. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  205. "preferred": true
  206. }
  207. ]
  208. },
  209. "require": {
  210. "php": "^5.6.0|^7.0.0"
  211. },
  212. "require-dev": {
  213. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  214. "phpcompatibility/php-compatibility": "dev-master",
  215. "phploc/phploc": "^4",
  216. "phpmd/phpmd": "dev-master",
  217. "phpunit/phpunit": "^5.7|^6.0|7.0",
  218. "sebastian/phpcpd": "^3.0",
  219. "squizlabs/php_codesniffer": "^3.0@dev"
  220. },
  221. "type": "library",
  222. "autoload": {
  223. "psr-4": {
  224. "Matrix\\": "classes/src/"
  225. },
  226. "files": [
  227. "classes/src/Functions/adjoint.php",
  228. "classes/src/Functions/antidiagonal.php",
  229. "classes/src/Functions/cofactors.php",
  230. "classes/src/Functions/determinant.php",
  231. "classes/src/Functions/diagonal.php",
  232. "classes/src/Functions/identity.php",
  233. "classes/src/Functions/inverse.php",
  234. "classes/src/Functions/minors.php",
  235. "classes/src/Functions/trace.php",
  236. "classes/src/Functions/transpose.php",
  237. "classes/src/Operations/add.php",
  238. "classes/src/Operations/directsum.php",
  239. "classes/src/Operations/subtract.php",
  240. "classes/src/Operations/multiply.php",
  241. "classes/src/Operations/divideby.php",
  242. "classes/src/Operations/divideinto.php"
  243. ]
  244. },
  245. "notification-url": "https://packagist.org/downloads/",
  246. "license": [
  247. "MIT"
  248. ],
  249. "authors": [
  250. {
  251. "name": "Mark Baker",
  252. "email": "mark@lange.demon.co.uk"
  253. }
  254. ],
  255. "description": "PHP Class for working with matrices",
  256. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  257. "keywords": [
  258. "mathematics",
  259. "matrix",
  260. "vector"
  261. ],
  262. "support": {
  263. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  264. "source": "https://github.com/MarkBaker/PHPMatrix/tree/1.2.3"
  265. },
  266. "time": "2021-01-26T14:36:01+00:00"
  267. },
  268. {
  269. "name": "pclzip/pclzip",
  270. "version": "2.8.2",
  271. "source": {
  272. "type": "git",
  273. "url": "https://github.com/ivanlanin/pclzip.git",
  274. "reference": "19dd1de9d3f5fc4d7d70175b4c344dee329f45fd"
  275. },
  276. "dist": {
  277. "type": "zip",
  278. "url": "https://api.github.com/repos/ivanlanin/pclzip/zipball/19dd1de9d3f5fc4d7d70175b4c344dee329f45fd",
  279. "reference": "19dd1de9d3f5fc4d7d70175b4c344dee329f45fd",
  280. "shasum": "",
  281. "mirrors": [
  282. {
  283. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  284. "preferred": true
  285. }
  286. ]
  287. },
  288. "type": "library",
  289. "autoload": {
  290. "classmap": [
  291. "pclzip.lib.php"
  292. ]
  293. },
  294. "notification-url": "https://packagist.org/downloads/",
  295. "license": [
  296. "LGPL-2.1"
  297. ],
  298. "authors": [
  299. {
  300. "name": "Vincent Blavet"
  301. }
  302. ],
  303. "description": "A PHP library that offers compression and extraction functions for Zip formatted archives",
  304. "homepage": "http://www.phpconcept.net/pclzip",
  305. "keywords": [
  306. "php",
  307. "zip"
  308. ],
  309. "support": {
  310. "issues": "https://github.com/ivanlanin/pclzip/issues",
  311. "source": "https://github.com/ivanlanin/pclzip/tree/master"
  312. },
  313. "time": "2014-06-05T11:42:24+00:00"
  314. },
  315. {
  316. "name": "phpdocumentor/reflection-common",
  317. "version": "2.2.0",
  318. "source": {
  319. "type": "git",
  320. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  321. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  322. },
  323. "dist": {
  324. "type": "zip",
  325. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  326. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  327. "shasum": "",
  328. "mirrors": [
  329. {
  330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  331. "preferred": true
  332. }
  333. ]
  334. },
  335. "require": {
  336. "php": "^7.2 || ^8.0"
  337. },
  338. "type": "library",
  339. "extra": {
  340. "branch-alias": {
  341. "dev-2.x": "2.x-dev"
  342. }
  343. },
  344. "autoload": {
  345. "psr-4": {
  346. "phpDocumentor\\Reflection\\": "src/"
  347. }
  348. },
  349. "notification-url": "https://packagist.org/downloads/",
  350. "license": [
  351. "MIT"
  352. ],
  353. "authors": [
  354. {
  355. "name": "Jaap van Otterdijk",
  356. "email": "opensource@ijaap.nl"
  357. }
  358. ],
  359. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  360. "homepage": "http://www.phpdoc.org",
  361. "keywords": [
  362. "FQSEN",
  363. "phpDocumentor",
  364. "phpdoc",
  365. "reflection",
  366. "static analysis"
  367. ],
  368. "support": {
  369. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  370. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  371. },
  372. "time": "2020-06-27T09:03:43+00:00"
  373. },
  374. {
  375. "name": "phpdocumentor/reflection-docblock",
  376. "version": "5.2.2",
  377. "source": {
  378. "type": "git",
  379. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  380. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  381. },
  382. "dist": {
  383. "type": "zip",
  384. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  385. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  386. "shasum": "",
  387. "mirrors": [
  388. {
  389. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  390. "preferred": true
  391. }
  392. ]
  393. },
  394. "require": {
  395. "ext-filter": "*",
  396. "php": "^7.2 || ^8.0",
  397. "phpdocumentor/reflection-common": "^2.2",
  398. "phpdocumentor/type-resolver": "^1.3",
  399. "webmozart/assert": "^1.9.1"
  400. },
  401. "require-dev": {
  402. "mockery/mockery": "~1.3.2"
  403. },
  404. "type": "library",
  405. "extra": {
  406. "branch-alias": {
  407. "dev-master": "5.x-dev"
  408. }
  409. },
  410. "autoload": {
  411. "psr-4": {
  412. "phpDocumentor\\Reflection\\": "src"
  413. }
  414. },
  415. "notification-url": "https://packagist.org/downloads/",
  416. "license": [
  417. "MIT"
  418. ],
  419. "authors": [
  420. {
  421. "name": "Mike van Riel",
  422. "email": "me@mikevanriel.com"
  423. },
  424. {
  425. "name": "Jaap van Otterdijk",
  426. "email": "account@ijaap.nl"
  427. }
  428. ],
  429. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  430. "support": {
  431. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  432. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  433. },
  434. "time": "2020-09-03T19:13:55+00:00"
  435. },
  436. {
  437. "name": "phpdocumentor/type-resolver",
  438. "version": "1.4.0",
  439. "source": {
  440. "type": "git",
  441. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  442. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  443. },
  444. "dist": {
  445. "type": "zip",
  446. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  447. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  448. "shasum": "",
  449. "mirrors": [
  450. {
  451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  452. "preferred": true
  453. }
  454. ]
  455. },
  456. "require": {
  457. "php": "^7.2 || ^8.0",
  458. "phpdocumentor/reflection-common": "^2.0"
  459. },
  460. "require-dev": {
  461. "ext-tokenizer": "*"
  462. },
  463. "type": "library",
  464. "extra": {
  465. "branch-alias": {
  466. "dev-1.x": "1.x-dev"
  467. }
  468. },
  469. "autoload": {
  470. "psr-4": {
  471. "phpDocumentor\\Reflection\\": "src"
  472. }
  473. },
  474. "notification-url": "https://packagist.org/downloads/",
  475. "license": [
  476. "MIT"
  477. ],
  478. "authors": [
  479. {
  480. "name": "Mike van Riel",
  481. "email": "me@mikevanriel.com"
  482. }
  483. ],
  484. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  485. "support": {
  486. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  487. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  488. },
  489. "time": "2020-09-17T18:55:26+00:00"
  490. },
  491. {
  492. "name": "phpoffice/common",
  493. "version": "0.2.9",
  494. "source": {
  495. "type": "git",
  496. "url": "https://github.com/PHPOffice/Common.git",
  497. "reference": "edb5d32b1e3400a35a5c91e2539ed6f6ce925e4d"
  498. },
  499. "dist": {
  500. "type": "zip",
  501. "url": "https://api.github.com/repos/PHPOffice/Common/zipball/edb5d32b1e3400a35a5c91e2539ed6f6ce925e4d",
  502. "reference": "edb5d32b1e3400a35a5c91e2539ed6f6ce925e4d",
  503. "shasum": "",
  504. "mirrors": [
  505. {
  506. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  507. "preferred": true
  508. }
  509. ]
  510. },
  511. "require": {
  512. "pclzip/pclzip": "^2.8",
  513. "php": ">=5.3.0"
  514. },
  515. "require-dev": {
  516. "phpdocumentor/phpdocumentor": "2.*",
  517. "phploc/phploc": "2.*",
  518. "phpmd/phpmd": "2.*",
  519. "phpunit/phpunit": "^4.8.36 || ^7.0",
  520. "sebastian/phpcpd": "2.*",
  521. "squizlabs/php_codesniffer": "2.*"
  522. },
  523. "type": "library",
  524. "autoload": {
  525. "psr-4": {
  526. "PhpOffice\\Common\\": "src/Common/"
  527. }
  528. },
  529. "notification-url": "https://packagist.org/downloads/",
  530. "license": [
  531. "LGPL"
  532. ],
  533. "authors": [
  534. {
  535. "name": "Mark Baker"
  536. },
  537. {
  538. "name": "Franck Lefevre",
  539. "homepage": "http://rootslabs.net"
  540. }
  541. ],
  542. "description": "PHPOffice Common",
  543. "homepage": "http://phpoffice.github.io",
  544. "keywords": [
  545. "common",
  546. "component",
  547. "office",
  548. "php"
  549. ],
  550. "support": {
  551. "issues": "https://github.com/PHPOffice/Common/issues",
  552. "source": "https://github.com/PHPOffice/Common/tree/master"
  553. },
  554. "time": "2018-07-13T14:12:34+00:00"
  555. },
  556. {
  557. "name": "phpoffice/phpexcel",
  558. "version": "1.8.0",
  559. "source": {
  560. "type": "git",
  561. "url": "https://github.com/PHPOffice/PHPExcel.git",
  562. "reference": "e69a5e4d0ffa7fb6f171859e0a04346e580df30b"
  563. },
  564. "dist": {
  565. "type": "zip",
  566. "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/e69a5e4d0ffa7fb6f171859e0a04346e580df30b",
  567. "reference": "e69a5e4d0ffa7fb6f171859e0a04346e580df30b",
  568. "shasum": "",
  569. "mirrors": [
  570. {
  571. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  572. "preferred": true
  573. }
  574. ]
  575. },
  576. "require": {
  577. "ext-xml": "*",
  578. "ext-xmlwriter": "*",
  579. "php": ">=5.2.0"
  580. },
  581. "type": "library",
  582. "autoload": {
  583. "psr-0": {
  584. "PHPExcel": "Classes/"
  585. }
  586. },
  587. "notification-url": "https://packagist.org/downloads/",
  588. "license": [
  589. "LGPL"
  590. ],
  591. "authors": [
  592. {
  593. "name": "Maarten Balliauw",
  594. "homepage": "http://blog.maartenballiauw.be"
  595. },
  596. {
  597. "name": "Mark Baker"
  598. },
  599. {
  600. "name": "Franck Lefevre",
  601. "homepage": "http://blog.rootslabs.net"
  602. },
  603. {
  604. "name": "Erik Tilt"
  605. }
  606. ],
  607. "description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  608. "homepage": "http://phpexcel.codeplex.com",
  609. "keywords": [
  610. "OpenXML",
  611. "excel",
  612. "php",
  613. "spreadsheet",
  614. "xls",
  615. "xlsx"
  616. ],
  617. "support": {
  618. "issues": "https://github.com/PHPOffice/PHPExcel/issues",
  619. "source": "https://github.com/PHPOffice/PHPExcel/tree/develop"
  620. },
  621. "abandoned": "phpoffice/phpspreadsheet",
  622. "time": "2014-03-02T15:22:49+00:00"
  623. },
  624. {
  625. "name": "phpoffice/phpspreadsheet",
  626. "version": "1.8.0",
  627. "source": {
  628. "type": "git",
  629. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  630. "reference": "0e6238c69e863b58aeece61e48ea032696c6dccd"
  631. },
  632. "dist": {
  633. "type": "zip",
  634. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/0e6238c69e863b58aeece61e48ea032696c6dccd",
  635. "reference": "0e6238c69e863b58aeece61e48ea032696c6dccd",
  636. "shasum": "",
  637. "mirrors": [
  638. {
  639. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  640. "preferred": true
  641. }
  642. ]
  643. },
  644. "require": {
  645. "ext-ctype": "*",
  646. "ext-dom": "*",
  647. "ext-fileinfo": "*",
  648. "ext-gd": "*",
  649. "ext-iconv": "*",
  650. "ext-libxml": "*",
  651. "ext-mbstring": "*",
  652. "ext-simplexml": "*",
  653. "ext-xml": "*",
  654. "ext-xmlreader": "*",
  655. "ext-xmlwriter": "*",
  656. "ext-zip": "*",
  657. "ext-zlib": "*",
  658. "markbaker/complex": "^1.4",
  659. "markbaker/matrix": "^1.1",
  660. "php": "^5.6|^7.0",
  661. "psr/simple-cache": "^1.0"
  662. },
  663. "require-dev": {
  664. "doctrine/instantiator": "^1.0.0",
  665. "dompdf/dompdf": "^0.8.0",
  666. "friendsofphp/php-cs-fixer": "@stable",
  667. "jpgraph/jpgraph": "^4.0",
  668. "mpdf/mpdf": "^7.0.0",
  669. "phpcompatibility/php-compatibility": "^8.0",
  670. "phpunit/phpunit": "^5.7",
  671. "squizlabs/php_codesniffer": "^3.3",
  672. "tecnickcom/tcpdf": "^6.2"
  673. },
  674. "suggest": {
  675. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  676. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  677. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  678. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  679. },
  680. "type": "library",
  681. "autoload": {
  682. "psr-4": {
  683. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  684. }
  685. },
  686. "notification-url": "https://packagist.org/downloads/",
  687. "license": [
  688. "LGPL-2.1-or-later"
  689. ],
  690. "authors": [
  691. {
  692. "name": "Erik Tilt"
  693. },
  694. {
  695. "name": "Adrien Crivelli"
  696. },
  697. {
  698. "name": "Maarten Balliauw",
  699. "homepage": "https://blog.maartenballiauw.be"
  700. },
  701. {
  702. "name": "Mark Baker",
  703. "homepage": "https://markbakeruk.net"
  704. },
  705. {
  706. "name": "Franck Lefevre",
  707. "homepage": "https://rootslabs.net"
  708. }
  709. ],
  710. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  711. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  712. "keywords": [
  713. "OpenXML",
  714. "excel",
  715. "gnumeric",
  716. "ods",
  717. "php",
  718. "spreadsheet",
  719. "xls",
  720. "xlsx"
  721. ],
  722. "support": {
  723. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  724. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.8.0"
  725. },
  726. "time": "2019-06-30T22:55:25+00:00"
  727. },
  728. {
  729. "name": "phpoffice/phpword",
  730. "version": "0.17.0",
  731. "source": {
  732. "type": "git",
  733. "url": "https://github.com/PHPOffice/PHPWord.git",
  734. "reference": "b8346af548d399acd9e30fc76ab0c55c2fec03a5"
  735. },
  736. "dist": {
  737. "type": "zip",
  738. "url": "https://api.github.com/repos/PHPOffice/PHPWord/zipball/b8346af548d399acd9e30fc76ab0c55c2fec03a5",
  739. "reference": "b8346af548d399acd9e30fc76ab0c55c2fec03a5",
  740. "shasum": "",
  741. "mirrors": [
  742. {
  743. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  744. "preferred": true
  745. }
  746. ]
  747. },
  748. "require": {
  749. "ext-xml": "*",
  750. "php": "^5.3.3 || ^7.0",
  751. "phpoffice/common": "^0.2.9",
  752. "zendframework/zend-escaper": "^2.2"
  753. },
  754. "require-dev": {
  755. "dompdf/dompdf": "0.8.*",
  756. "ext-gd": "*",
  757. "ext-zip": "*",
  758. "friendsofphp/php-cs-fixer": "^2.2",
  759. "mpdf/mpdf": "5.7.4 || 6.* || 7.*",
  760. "php-coveralls/php-coveralls": "1.1.0 || ^2.0",
  761. "phploc/phploc": "2.* || 3.* || 4.*",
  762. "phpmd/phpmd": "2.*",
  763. "phpunit/phpunit": "^4.8.36 || ^7.0",
  764. "squizlabs/php_codesniffer": "^2.9",
  765. "tecnickcom/tcpdf": "6.*"
  766. },
  767. "suggest": {
  768. "dompdf/dompdf": "Allows writing PDF",
  769. "ext-gd2": "Allows adding images",
  770. "ext-xmlwriter": "Allows writing OOXML and ODF",
  771. "ext-xsl": "Allows applying XSL style sheet to headers, to main document part, and to footers of an OOXML template",
  772. "ext-zip": "Allows writing OOXML and ODF"
  773. },
  774. "type": "library",
  775. "extra": {
  776. "branch-alias": {
  777. "dev-develop": "0.18-dev"
  778. }
  779. },
  780. "autoload": {
  781. "psr-4": {
  782. "PhpOffice\\PhpWord\\": "src/PhpWord"
  783. }
  784. },
  785. "notification-url": "https://packagist.org/downloads/",
  786. "license": [
  787. "LGPL-3.0"
  788. ],
  789. "authors": [
  790. {
  791. "name": "Mark Baker"
  792. },
  793. {
  794. "name": "Gabriel Bull",
  795. "email": "me@gabrielbull.com",
  796. "homepage": "http://gabrielbull.com/"
  797. },
  798. {
  799. "name": "Franck Lefevre",
  800. "homepage": "https://rootslabs.net/blog/"
  801. },
  802. {
  803. "name": "Ivan Lanin",
  804. "homepage": "http://ivan.lanin.org"
  805. },
  806. {
  807. "name": "Roman Syroeshko",
  808. "homepage": "http://ru.linkedin.com/pub/roman-syroeshko/34/a53/994/"
  809. },
  810. {
  811. "name": "Antoine de Troostembergh"
  812. }
  813. ],
  814. "description": "PHPWord - A pure PHP library for reading and writing word processing documents (OOXML, ODF, RTF, HTML, PDF)",
  815. "homepage": "http://phpoffice.github.io",
  816. "keywords": [
  817. "ISO IEC 29500",
  818. "OOXML",
  819. "Office Open XML",
  820. "OpenDocument",
  821. "OpenXML",
  822. "PhpOffice",
  823. "PhpWord",
  824. "Rich Text Format",
  825. "WordprocessingML",
  826. "doc",
  827. "docx",
  828. "html",
  829. "odf",
  830. "odt",
  831. "office",
  832. "pdf",
  833. "php",
  834. "reader",
  835. "rtf",
  836. "template",
  837. "template processor",
  838. "word",
  839. "writer"
  840. ],
  841. "support": {
  842. "issues": "https://github.com/PHPOffice/PHPWord/issues",
  843. "source": "https://github.com/PHPOffice/PHPWord/tree/develop"
  844. },
  845. "time": "2019-10-01T20:43:33+00:00"
  846. },
  847. {
  848. "name": "phpspec/prophecy",
  849. "version": "v1.10.3",
  850. "source": {
  851. "type": "git",
  852. "url": "https://github.com/phpspec/prophecy.git",
  853. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  854. },
  855. "dist": {
  856. "type": "zip",
  857. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  858. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  859. "shasum": "",
  860. "mirrors": [
  861. {
  862. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  863. "preferred": true
  864. }
  865. ]
  866. },
  867. "require": {
  868. "doctrine/instantiator": "^1.0.2",
  869. "php": "^5.3|^7.0",
  870. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  871. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  872. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  873. },
  874. "require-dev": {
  875. "phpspec/phpspec": "^2.5 || ^3.2",
  876. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  877. },
  878. "type": "library",
  879. "extra": {
  880. "branch-alias": {
  881. "dev-master": "1.10.x-dev"
  882. }
  883. },
  884. "autoload": {
  885. "psr-4": {
  886. "Prophecy\\": "src/Prophecy"
  887. }
  888. },
  889. "notification-url": "https://packagist.org/downloads/",
  890. "license": [
  891. "MIT"
  892. ],
  893. "authors": [
  894. {
  895. "name": "Konstantin Kudryashov",
  896. "email": "ever.zet@gmail.com",
  897. "homepage": "http://everzet.com"
  898. },
  899. {
  900. "name": "Marcello Duarte",
  901. "email": "marcello.duarte@gmail.com"
  902. }
  903. ],
  904. "description": "Highly opinionated mocking framework for PHP 5.3+",
  905. "homepage": "https://github.com/phpspec/prophecy",
  906. "keywords": [
  907. "Double",
  908. "Dummy",
  909. "fake",
  910. "mock",
  911. "spy",
  912. "stub"
  913. ],
  914. "support": {
  915. "issues": "https://github.com/phpspec/prophecy/issues",
  916. "source": "https://github.com/phpspec/prophecy/tree/v1.10.3"
  917. },
  918. "time": "2020-03-05T15:02:03+00:00"
  919. },
  920. {
  921. "name": "phpunit/php-code-coverage",
  922. "version": "2.2.4",
  923. "source": {
  924. "type": "git",
  925. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  926. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979"
  927. },
  928. "dist": {
  929. "type": "zip",
  930. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  931. "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979",
  932. "shasum": "",
  933. "mirrors": [
  934. {
  935. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  936. "preferred": true
  937. }
  938. ]
  939. },
  940. "require": {
  941. "php": ">=5.3.3",
  942. "phpunit/php-file-iterator": "~1.3",
  943. "phpunit/php-text-template": "~1.2",
  944. "phpunit/php-token-stream": "~1.3",
  945. "sebastian/environment": "^1.3.2",
  946. "sebastian/version": "~1.0"
  947. },
  948. "require-dev": {
  949. "ext-xdebug": ">=2.1.4",
  950. "phpunit/phpunit": "~4"
  951. },
  952. "suggest": {
  953. "ext-dom": "*",
  954. "ext-xdebug": ">=2.2.1",
  955. "ext-xmlwriter": "*"
  956. },
  957. "type": "library",
  958. "extra": {
  959. "branch-alias": {
  960. "dev-master": "2.2.x-dev"
  961. }
  962. },
  963. "autoload": {
  964. "classmap": [
  965. "src/"
  966. ]
  967. },
  968. "notification-url": "https://packagist.org/downloads/",
  969. "license": [
  970. "BSD-3-Clause"
  971. ],
  972. "authors": [
  973. {
  974. "name": "Sebastian Bergmann",
  975. "email": "sb@sebastian-bergmann.de",
  976. "role": "lead"
  977. }
  978. ],
  979. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  980. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  981. "keywords": [
  982. "coverage",
  983. "testing",
  984. "xunit"
  985. ],
  986. "support": {
  987. "irc": "irc://irc.freenode.net/phpunit",
  988. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  989. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/2.2"
  990. },
  991. "time": "2015-10-06T15:47:00+00:00"
  992. },
  993. {
  994. "name": "phpunit/php-file-iterator",
  995. "version": "1.4.5",
  996. "source": {
  997. "type": "git",
  998. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  999. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  1000. },
  1001. "dist": {
  1002. "type": "zip",
  1003. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1004. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  1005. "shasum": "",
  1006. "mirrors": [
  1007. {
  1008. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1009. "preferred": true
  1010. }
  1011. ]
  1012. },
  1013. "require": {
  1014. "php": ">=5.3.3"
  1015. },
  1016. "type": "library",
  1017. "extra": {
  1018. "branch-alias": {
  1019. "dev-master": "1.4.x-dev"
  1020. }
  1021. },
  1022. "autoload": {
  1023. "classmap": [
  1024. "src/"
  1025. ]
  1026. },
  1027. "notification-url": "https://packagist.org/downloads/",
  1028. "license": [
  1029. "BSD-3-Clause"
  1030. ],
  1031. "authors": [
  1032. {
  1033. "name": "Sebastian Bergmann",
  1034. "email": "sb@sebastian-bergmann.de",
  1035. "role": "lead"
  1036. }
  1037. ],
  1038. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  1039. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  1040. "keywords": [
  1041. "filesystem",
  1042. "iterator"
  1043. ],
  1044. "support": {
  1045. "irc": "irc://irc.freenode.net/phpunit",
  1046. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  1047. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/1.4.5"
  1048. },
  1049. "time": "2017-11-27T13:52:08+00:00"
  1050. },
  1051. {
  1052. "name": "phpunit/php-text-template",
  1053. "version": "1.2.1",
  1054. "source": {
  1055. "type": "git",
  1056. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  1057. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  1058. },
  1059. "dist": {
  1060. "type": "zip",
  1061. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1062. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  1063. "shasum": "",
  1064. "mirrors": [
  1065. {
  1066. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1067. "preferred": true
  1068. }
  1069. ]
  1070. },
  1071. "require": {
  1072. "php": ">=5.3.3"
  1073. },
  1074. "type": "library",
  1075. "autoload": {
  1076. "classmap": [
  1077. "src/"
  1078. ]
  1079. },
  1080. "notification-url": "https://packagist.org/downloads/",
  1081. "license": [
  1082. "BSD-3-Clause"
  1083. ],
  1084. "authors": [
  1085. {
  1086. "name": "Sebastian Bergmann",
  1087. "email": "sebastian@phpunit.de",
  1088. "role": "lead"
  1089. }
  1090. ],
  1091. "description": "Simple template engine.",
  1092. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  1093. "keywords": [
  1094. "template"
  1095. ],
  1096. "support": {
  1097. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  1098. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  1099. },
  1100. "time": "2015-06-21T13:50:34+00:00"
  1101. },
  1102. {
  1103. "name": "phpunit/php-timer",
  1104. "version": "1.0.9",
  1105. "source": {
  1106. "type": "git",
  1107. "url": "https://github.com/sebastianbergmann/php-timer.git",
  1108. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  1109. },
  1110. "dist": {
  1111. "type": "zip",
  1112. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1113. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  1114. "shasum": "",
  1115. "mirrors": [
  1116. {
  1117. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1118. "preferred": true
  1119. }
  1120. ]
  1121. },
  1122. "require": {
  1123. "php": "^5.3.3 || ^7.0"
  1124. },
  1125. "require-dev": {
  1126. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1127. },
  1128. "type": "library",
  1129. "extra": {
  1130. "branch-alias": {
  1131. "dev-master": "1.0-dev"
  1132. }
  1133. },
  1134. "autoload": {
  1135. "classmap": [
  1136. "src/"
  1137. ]
  1138. },
  1139. "notification-url": "https://packagist.org/downloads/",
  1140. "license": [
  1141. "BSD-3-Clause"
  1142. ],
  1143. "authors": [
  1144. {
  1145. "name": "Sebastian Bergmann",
  1146. "email": "sb@sebastian-bergmann.de",
  1147. "role": "lead"
  1148. }
  1149. ],
  1150. "description": "Utility class for timing",
  1151. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  1152. "keywords": [
  1153. "timer"
  1154. ],
  1155. "support": {
  1156. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  1157. "source": "https://github.com/sebastianbergmann/php-timer/tree/master"
  1158. },
  1159. "time": "2017-02-26T11:10:40+00:00"
  1160. },
  1161. {
  1162. "name": "phpunit/php-token-stream",
  1163. "version": "1.4.12",
  1164. "source": {
  1165. "type": "git",
  1166. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  1167. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16"
  1168. },
  1169. "dist": {
  1170. "type": "zip",
  1171. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/1ce90ba27c42e4e44e6d8458241466380b51fa16",
  1172. "reference": "1ce90ba27c42e4e44e6d8458241466380b51fa16",
  1173. "shasum": "",
  1174. "mirrors": [
  1175. {
  1176. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1177. "preferred": true
  1178. }
  1179. ]
  1180. },
  1181. "require": {
  1182. "ext-tokenizer": "*",
  1183. "php": ">=5.3.3"
  1184. },
  1185. "require-dev": {
  1186. "phpunit/phpunit": "~4.2"
  1187. },
  1188. "type": "library",
  1189. "extra": {
  1190. "branch-alias": {
  1191. "dev-master": "1.4-dev"
  1192. }
  1193. },
  1194. "autoload": {
  1195. "classmap": [
  1196. "src/"
  1197. ]
  1198. },
  1199. "notification-url": "https://packagist.org/downloads/",
  1200. "license": [
  1201. "BSD-3-Clause"
  1202. ],
  1203. "authors": [
  1204. {
  1205. "name": "Sebastian Bergmann",
  1206. "email": "sebastian@phpunit.de"
  1207. }
  1208. ],
  1209. "description": "Wrapper around PHP's tokenizer extension.",
  1210. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  1211. "keywords": [
  1212. "tokenizer"
  1213. ],
  1214. "support": {
  1215. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  1216. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/1.4"
  1217. },
  1218. "abandoned": true,
  1219. "time": "2017-12-04T08:55:13+00:00"
  1220. },
  1221. {
  1222. "name": "phpunit/phpunit",
  1223. "version": "4.8.36",
  1224. "source": {
  1225. "type": "git",
  1226. "url": "https://github.com/sebastianbergmann/phpunit.git",
  1227. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517"
  1228. },
  1229. "dist": {
  1230. "type": "zip",
  1231. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/46023de9a91eec7dfb06cc56cb4e260017298517",
  1232. "reference": "46023de9a91eec7dfb06cc56cb4e260017298517",
  1233. "shasum": "",
  1234. "mirrors": [
  1235. {
  1236. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1237. "preferred": true
  1238. }
  1239. ]
  1240. },
  1241. "require": {
  1242. "ext-dom": "*",
  1243. "ext-json": "*",
  1244. "ext-pcre": "*",
  1245. "ext-reflection": "*",
  1246. "ext-spl": "*",
  1247. "php": ">=5.3.3",
  1248. "phpspec/prophecy": "^1.3.1",
  1249. "phpunit/php-code-coverage": "~2.1",
  1250. "phpunit/php-file-iterator": "~1.4",
  1251. "phpunit/php-text-template": "~1.2",
  1252. "phpunit/php-timer": "^1.0.6",
  1253. "phpunit/phpunit-mock-objects": "~2.3",
  1254. "sebastian/comparator": "~1.2.2",
  1255. "sebastian/diff": "~1.2",
  1256. "sebastian/environment": "~1.3",
  1257. "sebastian/exporter": "~1.2",
  1258. "sebastian/global-state": "~1.0",
  1259. "sebastian/version": "~1.0",
  1260. "symfony/yaml": "~2.1|~3.0"
  1261. },
  1262. "suggest": {
  1263. "phpunit/php-invoker": "~1.1"
  1264. },
  1265. "bin": [
  1266. "phpunit"
  1267. ],
  1268. "type": "library",
  1269. "extra": {
  1270. "branch-alias": {
  1271. "dev-master": "4.8.x-dev"
  1272. }
  1273. },
  1274. "autoload": {
  1275. "classmap": [
  1276. "src/"
  1277. ]
  1278. },
  1279. "notification-url": "https://packagist.org/downloads/",
  1280. "license": [
  1281. "BSD-3-Clause"
  1282. ],
  1283. "authors": [
  1284. {
  1285. "name": "Sebastian Bergmann",
  1286. "email": "sebastian@phpunit.de",
  1287. "role": "lead"
  1288. }
  1289. ],
  1290. "description": "The PHP Unit Testing framework.",
  1291. "homepage": "https://phpunit.de/",
  1292. "keywords": [
  1293. "phpunit",
  1294. "testing",
  1295. "xunit"
  1296. ],
  1297. "support": {
  1298. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  1299. "source": "https://github.com/sebastianbergmann/phpunit/tree/4.8.36"
  1300. },
  1301. "time": "2017-06-21T08:07:12+00:00"
  1302. },
  1303. {
  1304. "name": "phpunit/phpunit-mock-objects",
  1305. "version": "2.3.8",
  1306. "source": {
  1307. "type": "git",
  1308. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  1309. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983"
  1310. },
  1311. "dist": {
  1312. "type": "zip",
  1313. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  1314. "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983",
  1315. "shasum": "",
  1316. "mirrors": [
  1317. {
  1318. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1319. "preferred": true
  1320. }
  1321. ]
  1322. },
  1323. "require": {
  1324. "doctrine/instantiator": "^1.0.2",
  1325. "php": ">=5.3.3",
  1326. "phpunit/php-text-template": "~1.2",
  1327. "sebastian/exporter": "~1.2"
  1328. },
  1329. "require-dev": {
  1330. "phpunit/phpunit": "~4.4"
  1331. },
  1332. "suggest": {
  1333. "ext-soap": "*"
  1334. },
  1335. "type": "library",
  1336. "extra": {
  1337. "branch-alias": {
  1338. "dev-master": "2.3.x-dev"
  1339. }
  1340. },
  1341. "autoload": {
  1342. "classmap": [
  1343. "src/"
  1344. ]
  1345. },
  1346. "notification-url": "https://packagist.org/downloads/",
  1347. "license": [
  1348. "BSD-3-Clause"
  1349. ],
  1350. "authors": [
  1351. {
  1352. "name": "Sebastian Bergmann",
  1353. "email": "sb@sebastian-bergmann.de",
  1354. "role": "lead"
  1355. }
  1356. ],
  1357. "description": "Mock Object library for PHPUnit",
  1358. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  1359. "keywords": [
  1360. "mock",
  1361. "xunit"
  1362. ],
  1363. "support": {
  1364. "irc": "irc://irc.freenode.net/phpunit",
  1365. "issues": "https://github.com/sebastianbergmann/phpunit-mock-objects/issues",
  1366. "source": "https://github.com/sebastianbergmann/phpunit-mock-objects/tree/2.3"
  1367. },
  1368. "abandoned": true,
  1369. "time": "2015-10-02T06:51:40+00:00"
  1370. },
  1371. {
  1372. "name": "psr/simple-cache",
  1373. "version": "1.0.1",
  1374. "source": {
  1375. "type": "git",
  1376. "url": "https://github.com/php-fig/simple-cache.git",
  1377. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  1378. },
  1379. "dist": {
  1380. "type": "zip",
  1381. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1382. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1383. "shasum": "",
  1384. "mirrors": [
  1385. {
  1386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1387. "preferred": true
  1388. }
  1389. ]
  1390. },
  1391. "require": {
  1392. "php": ">=5.3.0"
  1393. },
  1394. "type": "library",
  1395. "extra": {
  1396. "branch-alias": {
  1397. "dev-master": "1.0.x-dev"
  1398. }
  1399. },
  1400. "autoload": {
  1401. "psr-4": {
  1402. "Psr\\SimpleCache\\": "src/"
  1403. }
  1404. },
  1405. "notification-url": "https://packagist.org/downloads/",
  1406. "license": [
  1407. "MIT"
  1408. ],
  1409. "authors": [
  1410. {
  1411. "name": "PHP-FIG",
  1412. "homepage": "http://www.php-fig.org/"
  1413. }
  1414. ],
  1415. "description": "Common interfaces for simple caching",
  1416. "keywords": [
  1417. "cache",
  1418. "caching",
  1419. "psr",
  1420. "psr-16",
  1421. "simple-cache"
  1422. ],
  1423. "support": {
  1424. "source": "https://github.com/php-fig/simple-cache/tree/master"
  1425. },
  1426. "time": "2017-10-23T01:57:42+00:00"
  1427. },
  1428. {
  1429. "name": "sebastian/comparator",
  1430. "version": "1.2.4",
  1431. "source": {
  1432. "type": "git",
  1433. "url": "https://github.com/sebastianbergmann/comparator.git",
  1434. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
  1435. },
  1436. "dist": {
  1437. "type": "zip",
  1438. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1439. "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
  1440. "shasum": "",
  1441. "mirrors": [
  1442. {
  1443. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1444. "preferred": true
  1445. }
  1446. ]
  1447. },
  1448. "require": {
  1449. "php": ">=5.3.3",
  1450. "sebastian/diff": "~1.2",
  1451. "sebastian/exporter": "~1.2 || ~2.0"
  1452. },
  1453. "require-dev": {
  1454. "phpunit/phpunit": "~4.4"
  1455. },
  1456. "type": "library",
  1457. "extra": {
  1458. "branch-alias": {
  1459. "dev-master": "1.2.x-dev"
  1460. }
  1461. },
  1462. "autoload": {
  1463. "classmap": [
  1464. "src/"
  1465. ]
  1466. },
  1467. "notification-url": "https://packagist.org/downloads/",
  1468. "license": [
  1469. "BSD-3-Clause"
  1470. ],
  1471. "authors": [
  1472. {
  1473. "name": "Jeff Welch",
  1474. "email": "whatthejeff@gmail.com"
  1475. },
  1476. {
  1477. "name": "Volker Dusch",
  1478. "email": "github@wallbash.com"
  1479. },
  1480. {
  1481. "name": "Bernhard Schussek",
  1482. "email": "bschussek@2bepublished.at"
  1483. },
  1484. {
  1485. "name": "Sebastian Bergmann",
  1486. "email": "sebastian@phpunit.de"
  1487. }
  1488. ],
  1489. "description": "Provides the functionality to compare PHP values for equality",
  1490. "homepage": "http://www.github.com/sebastianbergmann/comparator",
  1491. "keywords": [
  1492. "comparator",
  1493. "compare",
  1494. "equality"
  1495. ],
  1496. "support": {
  1497. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  1498. "source": "https://github.com/sebastianbergmann/comparator/tree/1.2"
  1499. },
  1500. "time": "2017-01-29T09:50:25+00:00"
  1501. },
  1502. {
  1503. "name": "sebastian/diff",
  1504. "version": "1.4.3",
  1505. "source": {
  1506. "type": "git",
  1507. "url": "https://github.com/sebastianbergmann/diff.git",
  1508. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
  1509. },
  1510. "dist": {
  1511. "type": "zip",
  1512. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  1513. "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
  1514. "shasum": "",
  1515. "mirrors": [
  1516. {
  1517. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1518. "preferred": true
  1519. }
  1520. ]
  1521. },
  1522. "require": {
  1523. "php": "^5.3.3 || ^7.0"
  1524. },
  1525. "require-dev": {
  1526. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  1527. },
  1528. "type": "library",
  1529. "extra": {
  1530. "branch-alias": {
  1531. "dev-master": "1.4-dev"
  1532. }
  1533. },
  1534. "autoload": {
  1535. "classmap": [
  1536. "src/"
  1537. ]
  1538. },
  1539. "notification-url": "https://packagist.org/downloads/",
  1540. "license": [
  1541. "BSD-3-Clause"
  1542. ],
  1543. "authors": [
  1544. {
  1545. "name": "Kore Nordmann",
  1546. "email": "mail@kore-nordmann.de"
  1547. },
  1548. {
  1549. "name": "Sebastian Bergmann",
  1550. "email": "sebastian@phpunit.de"
  1551. }
  1552. ],
  1553. "description": "Diff implementation",
  1554. "homepage": "https://github.com/sebastianbergmann/diff",
  1555. "keywords": [
  1556. "diff"
  1557. ],
  1558. "support": {
  1559. "issues": "https://github.com/sebastianbergmann/diff/issues",
  1560. "source": "https://github.com/sebastianbergmann/diff/tree/1.4"
  1561. },
  1562. "time": "2017-05-22T07:24:03+00:00"
  1563. },
  1564. {
  1565. "name": "sebastian/environment",
  1566. "version": "1.3.8",
  1567. "source": {
  1568. "type": "git",
  1569. "url": "https://github.com/sebastianbergmann/environment.git",
  1570. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea"
  1571. },
  1572. "dist": {
  1573. "type": "zip",
  1574. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  1575. "reference": "be2c607e43ce4c89ecd60e75c6a85c126e754aea",
  1576. "shasum": "",
  1577. "mirrors": [
  1578. {
  1579. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1580. "preferred": true
  1581. }
  1582. ]
  1583. },
  1584. "require": {
  1585. "php": "^5.3.3 || ^7.0"
  1586. },
  1587. "require-dev": {
  1588. "phpunit/phpunit": "^4.8 || ^5.0"
  1589. },
  1590. "type": "library",
  1591. "extra": {
  1592. "branch-alias": {
  1593. "dev-master": "1.3.x-dev"
  1594. }
  1595. },
  1596. "autoload": {
  1597. "classmap": [
  1598. "src/"
  1599. ]
  1600. },
  1601. "notification-url": "https://packagist.org/downloads/",
  1602. "license": [
  1603. "BSD-3-Clause"
  1604. ],
  1605. "authors": [
  1606. {
  1607. "name": "Sebastian Bergmann",
  1608. "email": "sebastian@phpunit.de"
  1609. }
  1610. ],
  1611. "description": "Provides functionality to handle HHVM/PHP environments",
  1612. "homepage": "http://www.github.com/sebastianbergmann/environment",
  1613. "keywords": [
  1614. "Xdebug",
  1615. "environment",
  1616. "hhvm"
  1617. ],
  1618. "support": {
  1619. "issues": "https://github.com/sebastianbergmann/environment/issues",
  1620. "source": "https://github.com/sebastianbergmann/environment/tree/1.3"
  1621. },
  1622. "time": "2016-08-18T05:49:44+00:00"
  1623. },
  1624. {
  1625. "name": "sebastian/exporter",
  1626. "version": "1.2.2",
  1627. "source": {
  1628. "type": "git",
  1629. "url": "https://github.com/sebastianbergmann/exporter.git",
  1630. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4"
  1631. },
  1632. "dist": {
  1633. "type": "zip",
  1634. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/42c4c2eec485ee3e159ec9884f95b431287edde4",
  1635. "reference": "42c4c2eec485ee3e159ec9884f95b431287edde4",
  1636. "shasum": "",
  1637. "mirrors": [
  1638. {
  1639. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1640. "preferred": true
  1641. }
  1642. ]
  1643. },
  1644. "require": {
  1645. "php": ">=5.3.3",
  1646. "sebastian/recursion-context": "~1.0"
  1647. },
  1648. "require-dev": {
  1649. "ext-mbstring": "*",
  1650. "phpunit/phpunit": "~4.4"
  1651. },
  1652. "type": "library",
  1653. "extra": {
  1654. "branch-alias": {
  1655. "dev-master": "1.3.x-dev"
  1656. }
  1657. },
  1658. "autoload": {
  1659. "classmap": [
  1660. "src/"
  1661. ]
  1662. },
  1663. "notification-url": "https://packagist.org/downloads/",
  1664. "license": [
  1665. "BSD-3-Clause"
  1666. ],
  1667. "authors": [
  1668. {
  1669. "name": "Jeff Welch",
  1670. "email": "whatthejeff@gmail.com"
  1671. },
  1672. {
  1673. "name": "Volker Dusch",
  1674. "email": "github@wallbash.com"
  1675. },
  1676. {
  1677. "name": "Bernhard Schussek",
  1678. "email": "bschussek@2bepublished.at"
  1679. },
  1680. {
  1681. "name": "Sebastian Bergmann",
  1682. "email": "sebastian@phpunit.de"
  1683. },
  1684. {
  1685. "name": "Adam Harvey",
  1686. "email": "aharvey@php.net"
  1687. }
  1688. ],
  1689. "description": "Provides the functionality to export PHP variables for visualization",
  1690. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  1691. "keywords": [
  1692. "export",
  1693. "exporter"
  1694. ],
  1695. "support": {
  1696. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  1697. "source": "https://github.com/sebastianbergmann/exporter/tree/master"
  1698. },
  1699. "time": "2016-06-17T09:04:28+00:00"
  1700. },
  1701. {
  1702. "name": "sebastian/global-state",
  1703. "version": "1.1.1",
  1704. "source": {
  1705. "type": "git",
  1706. "url": "https://github.com/sebastianbergmann/global-state.git",
  1707. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
  1708. },
  1709. "dist": {
  1710. "type": "zip",
  1711. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1712. "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
  1713. "shasum": "",
  1714. "mirrors": [
  1715. {
  1716. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1717. "preferred": true
  1718. }
  1719. ]
  1720. },
  1721. "require": {
  1722. "php": ">=5.3.3"
  1723. },
  1724. "require-dev": {
  1725. "phpunit/phpunit": "~4.2"
  1726. },
  1727. "suggest": {
  1728. "ext-uopz": "*"
  1729. },
  1730. "type": "library",
  1731. "extra": {
  1732. "branch-alias": {
  1733. "dev-master": "1.0-dev"
  1734. }
  1735. },
  1736. "autoload": {
  1737. "classmap": [
  1738. "src/"
  1739. ]
  1740. },
  1741. "notification-url": "https://packagist.org/downloads/",
  1742. "license": [
  1743. "BSD-3-Clause"
  1744. ],
  1745. "authors": [
  1746. {
  1747. "name": "Sebastian Bergmann",
  1748. "email": "sebastian@phpunit.de"
  1749. }
  1750. ],
  1751. "description": "Snapshotting of global state",
  1752. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  1753. "keywords": [
  1754. "global state"
  1755. ],
  1756. "support": {
  1757. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  1758. "source": "https://github.com/sebastianbergmann/global-state/tree/1.1.1"
  1759. },
  1760. "time": "2015-10-12T03:26:01+00:00"
  1761. },
  1762. {
  1763. "name": "sebastian/recursion-context",
  1764. "version": "1.0.5",
  1765. "source": {
  1766. "type": "git",
  1767. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  1768. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7"
  1769. },
  1770. "dist": {
  1771. "type": "zip",
  1772. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  1773. "reference": "b19cc3298482a335a95f3016d2f8a6950f0fbcd7",
  1774. "shasum": "",
  1775. "mirrors": [
  1776. {
  1777. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1778. "preferred": true
  1779. }
  1780. ]
  1781. },
  1782. "require": {
  1783. "php": ">=5.3.3"
  1784. },
  1785. "require-dev": {
  1786. "phpunit/phpunit": "~4.4"
  1787. },
  1788. "type": "library",
  1789. "extra": {
  1790. "branch-alias": {
  1791. "dev-master": "1.0.x-dev"
  1792. }
  1793. },
  1794. "autoload": {
  1795. "classmap": [
  1796. "src/"
  1797. ]
  1798. },
  1799. "notification-url": "https://packagist.org/downloads/",
  1800. "license": [
  1801. "BSD-3-Clause"
  1802. ],
  1803. "authors": [
  1804. {
  1805. "name": "Jeff Welch",
  1806. "email": "whatthejeff@gmail.com"
  1807. },
  1808. {
  1809. "name": "Sebastian Bergmann",
  1810. "email": "sebastian@phpunit.de"
  1811. },
  1812. {
  1813. "name": "Adam Harvey",
  1814. "email": "aharvey@php.net"
  1815. }
  1816. ],
  1817. "description": "Provides functionality to recursively process PHP variables",
  1818. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  1819. "support": {
  1820. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  1821. "source": "https://github.com/sebastianbergmann/recursion-context/tree/master"
  1822. },
  1823. "time": "2016-10-03T07:41:43+00:00"
  1824. },
  1825. {
  1826. "name": "sebastian/version",
  1827. "version": "1.0.6",
  1828. "source": {
  1829. "type": "git",
  1830. "url": "https://github.com/sebastianbergmann/version.git",
  1831. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6"
  1832. },
  1833. "dist": {
  1834. "type": "zip",
  1835. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  1836. "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6",
  1837. "shasum": "",
  1838. "mirrors": [
  1839. {
  1840. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1841. "preferred": true
  1842. }
  1843. ]
  1844. },
  1845. "type": "library",
  1846. "autoload": {
  1847. "classmap": [
  1848. "src/"
  1849. ]
  1850. },
  1851. "notification-url": "https://packagist.org/downloads/",
  1852. "license": [
  1853. "BSD-3-Clause"
  1854. ],
  1855. "authors": [
  1856. {
  1857. "name": "Sebastian Bergmann",
  1858. "email": "sebastian@phpunit.de",
  1859. "role": "lead"
  1860. }
  1861. ],
  1862. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  1863. "homepage": "https://github.com/sebastianbergmann/version",
  1864. "support": {
  1865. "issues": "https://github.com/sebastianbergmann/version/issues",
  1866. "source": "https://github.com/sebastianbergmann/version/tree/1.0.6"
  1867. },
  1868. "time": "2015-06-21T13:59:46+00:00"
  1869. },
  1870. {
  1871. "name": "symfony/dom-crawler",
  1872. "version": "v2.8.52",
  1873. "source": {
  1874. "type": "git",
  1875. "url": "https://github.com/symfony/dom-crawler.git",
  1876. "reference": "2cdc7d3909eea6f982a6298d2e9ab7db01b6403c"
  1877. },
  1878. "dist": {
  1879. "type": "zip",
  1880. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/2cdc7d3909eea6f982a6298d2e9ab7db01b6403c",
  1881. "reference": "2cdc7d3909eea6f982a6298d2e9ab7db01b6403c",
  1882. "shasum": "",
  1883. "mirrors": [
  1884. {
  1885. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1886. "preferred": true
  1887. }
  1888. ]
  1889. },
  1890. "require": {
  1891. "php": ">=5.3.9",
  1892. "symfony/polyfill-ctype": "~1.8",
  1893. "symfony/polyfill-mbstring": "~1.0"
  1894. },
  1895. "require-dev": {
  1896. "symfony/css-selector": "~2.8|~3.0.0"
  1897. },
  1898. "suggest": {
  1899. "symfony/css-selector": ""
  1900. },
  1901. "type": "library",
  1902. "extra": {
  1903. "branch-alias": {
  1904. "dev-master": "2.8-dev"
  1905. }
  1906. },
  1907. "autoload": {
  1908. "psr-4": {
  1909. "Symfony\\Component\\DomCrawler\\": ""
  1910. },
  1911. "exclude-from-classmap": [
  1912. "/Tests/"
  1913. ]
  1914. },
  1915. "notification-url": "https://packagist.org/downloads/",
  1916. "license": [
  1917. "MIT"
  1918. ],
  1919. "authors": [
  1920. {
  1921. "name": "Fabien Potencier",
  1922. "email": "fabien@symfony.com"
  1923. },
  1924. {
  1925. "name": "Symfony Community",
  1926. "homepage": "https://symfony.com/contributors"
  1927. }
  1928. ],
  1929. "description": "Symfony DomCrawler Component",
  1930. "homepage": "https://symfony.com",
  1931. "support": {
  1932. "source": "https://github.com/symfony/dom-crawler/tree/v2.8.50"
  1933. },
  1934. "time": "2018-11-24T22:30:19+00:00"
  1935. },
  1936. {
  1937. "name": "symfony/polyfill-ctype",
  1938. "version": "v1.22.1",
  1939. "source": {
  1940. "type": "git",
  1941. "url": "https://github.com/symfony/polyfill-ctype.git",
  1942. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e"
  1943. },
  1944. "dist": {
  1945. "type": "zip",
  1946. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e",
  1947. "reference": "c6c942b1ac76c82448322025e084cadc56048b4e",
  1948. "shasum": "",
  1949. "mirrors": [
  1950. {
  1951. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1952. "preferred": true
  1953. }
  1954. ]
  1955. },
  1956. "require": {
  1957. "php": ">=7.1"
  1958. },
  1959. "suggest": {
  1960. "ext-ctype": "For best performance"
  1961. },
  1962. "type": "library",
  1963. "extra": {
  1964. "branch-alias": {
  1965. "dev-main": "1.22-dev"
  1966. },
  1967. "thanks": {
  1968. "name": "symfony/polyfill",
  1969. "url": "https://github.com/symfony/polyfill"
  1970. }
  1971. },
  1972. "autoload": {
  1973. "psr-4": {
  1974. "Symfony\\Polyfill\\Ctype\\": ""
  1975. },
  1976. "files": [
  1977. "bootstrap.php"
  1978. ]
  1979. },
  1980. "notification-url": "https://packagist.org/downloads/",
  1981. "license": [
  1982. "MIT"
  1983. ],
  1984. "authors": [
  1985. {
  1986. "name": "Gert de Pagter",
  1987. "email": "BackEndTea@gmail.com"
  1988. },
  1989. {
  1990. "name": "Symfony Community",
  1991. "homepage": "https://symfony.com/contributors"
  1992. }
  1993. ],
  1994. "description": "Symfony polyfill for ctype functions",
  1995. "homepage": "https://symfony.com",
  1996. "keywords": [
  1997. "compatibility",
  1998. "ctype",
  1999. "polyfill",
  2000. "portable"
  2001. ],
  2002. "support": {
  2003. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.1"
  2004. },
  2005. "funding": [
  2006. {
  2007. "url": "https://symfony.com/sponsor",
  2008. "type": "custom"
  2009. },
  2010. {
  2011. "url": "https://github.com/fabpot",
  2012. "type": "github"
  2013. },
  2014. {
  2015. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2016. "type": "tidelift"
  2017. }
  2018. ],
  2019. "time": "2021-01-07T16:49:33+00:00"
  2020. },
  2021. {
  2022. "name": "symfony/polyfill-mbstring",
  2023. "version": "v1.22.1",
  2024. "source": {
  2025. "type": "git",
  2026. "url": "https://github.com/symfony/polyfill-mbstring.git",
  2027. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1"
  2028. },
  2029. "dist": {
  2030. "type": "zip",
  2031. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/5232de97ee3b75b0360528dae24e73db49566ab1",
  2032. "reference": "5232de97ee3b75b0360528dae24e73db49566ab1",
  2033. "shasum": "",
  2034. "mirrors": [
  2035. {
  2036. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2037. "preferred": true
  2038. }
  2039. ]
  2040. },
  2041. "require": {
  2042. "php": ">=7.1"
  2043. },
  2044. "suggest": {
  2045. "ext-mbstring": "For best performance"
  2046. },
  2047. "type": "library",
  2048. "extra": {
  2049. "branch-alias": {
  2050. "dev-main": "1.22-dev"
  2051. },
  2052. "thanks": {
  2053. "name": "symfony/polyfill",
  2054. "url": "https://github.com/symfony/polyfill"
  2055. }
  2056. },
  2057. "autoload": {
  2058. "psr-4": {
  2059. "Symfony\\Polyfill\\Mbstring\\": ""
  2060. },
  2061. "files": [
  2062. "bootstrap.php"
  2063. ]
  2064. },
  2065. "notification-url": "https://packagist.org/downloads/",
  2066. "license": [
  2067. "MIT"
  2068. ],
  2069. "authors": [
  2070. {
  2071. "name": "Nicolas Grekas",
  2072. "email": "p@tchwork.com"
  2073. },
  2074. {
  2075. "name": "Symfony Community",
  2076. "homepage": "https://symfony.com/contributors"
  2077. }
  2078. ],
  2079. "description": "Symfony polyfill for the Mbstring extension",
  2080. "homepage": "https://symfony.com",
  2081. "keywords": [
  2082. "compatibility",
  2083. "mbstring",
  2084. "polyfill",
  2085. "portable",
  2086. "shim"
  2087. ],
  2088. "support": {
  2089. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.1"
  2090. },
  2091. "funding": [
  2092. {
  2093. "url": "https://symfony.com/sponsor",
  2094. "type": "custom"
  2095. },
  2096. {
  2097. "url": "https://github.com/fabpot",
  2098. "type": "github"
  2099. },
  2100. {
  2101. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2102. "type": "tidelift"
  2103. }
  2104. ],
  2105. "time": "2021-01-22T09:19:47+00:00"
  2106. },
  2107. {
  2108. "name": "symfony/yaml",
  2109. "version": "v3.4.47",
  2110. "source": {
  2111. "type": "git",
  2112. "url": "https://github.com/symfony/yaml.git",
  2113. "reference": "88289caa3c166321883f67fe5130188ebbb47094"
  2114. },
  2115. "dist": {
  2116. "type": "zip",
  2117. "url": "https://api.github.com/repos/symfony/yaml/zipball/88289caa3c166321883f67fe5130188ebbb47094",
  2118. "reference": "88289caa3c166321883f67fe5130188ebbb47094",
  2119. "shasum": "",
  2120. "mirrors": [
  2121. {
  2122. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2123. "preferred": true
  2124. }
  2125. ]
  2126. },
  2127. "require": {
  2128. "php": "^5.5.9|>=7.0.8",
  2129. "symfony/polyfill-ctype": "~1.8"
  2130. },
  2131. "conflict": {
  2132. "symfony/console": "<3.4"
  2133. },
  2134. "require-dev": {
  2135. "symfony/console": "~3.4|~4.0"
  2136. },
  2137. "suggest": {
  2138. "symfony/console": "For validating YAML files using the lint command"
  2139. },
  2140. "type": "library",
  2141. "autoload": {
  2142. "psr-4": {
  2143. "Symfony\\Component\\Yaml\\": ""
  2144. },
  2145. "exclude-from-classmap": [
  2146. "/Tests/"
  2147. ]
  2148. },
  2149. "notification-url": "https://packagist.org/downloads/",
  2150. "license": [
  2151. "MIT"
  2152. ],
  2153. "authors": [
  2154. {
  2155. "name": "Fabien Potencier",
  2156. "email": "fabien@symfony.com"
  2157. },
  2158. {
  2159. "name": "Symfony Community",
  2160. "homepage": "https://symfony.com/contributors"
  2161. }
  2162. ],
  2163. "description": "Symfony Yaml Component",
  2164. "homepage": "https://symfony.com",
  2165. "support": {
  2166. "source": "https://github.com/symfony/yaml/tree/v3.4.47"
  2167. },
  2168. "funding": [
  2169. {
  2170. "url": "https://symfony.com/sponsor",
  2171. "type": "custom"
  2172. },
  2173. {
  2174. "url": "https://github.com/fabpot",
  2175. "type": "github"
  2176. },
  2177. {
  2178. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2179. "type": "tidelift"
  2180. }
  2181. ],
  2182. "time": "2020-10-24T10:57:07+00:00"
  2183. },
  2184. {
  2185. "name": "topthink/framework",
  2186. "version": "v5.0.24",
  2187. "source": {
  2188. "type": "git",
  2189. "url": "https://github.com/top-think/framework.git",
  2190. "reference": "c255c22b2f5fa30f320ecf6c1d29f7740eb3e8be"
  2191. },
  2192. "dist": {
  2193. "type": "zip",
  2194. "url": "https://api.github.com/repos/top-think/framework/zipball/c255c22b2f5fa30f320ecf6c1d29f7740eb3e8be",
  2195. "reference": "c255c22b2f5fa30f320ecf6c1d29f7740eb3e8be",
  2196. "shasum": "",
  2197. "mirrors": [
  2198. {
  2199. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2200. "preferred": true
  2201. }
  2202. ]
  2203. },
  2204. "require": {
  2205. "php": ">=5.4.0",
  2206. "topthink/think-installer": "~1.0"
  2207. },
  2208. "require-dev": {
  2209. "johnkary/phpunit-speedtrap": "^1.0",
  2210. "mikey179/vfsstream": "~1.6",
  2211. "phpdocumentor/reflection-docblock": "^2.0",
  2212. "phploc/phploc": "2.*",
  2213. "phpunit/phpunit": "4.8.*",
  2214. "sebastian/phpcpd": "2.*"
  2215. },
  2216. "type": "think-framework",
  2217. "autoload": {
  2218. "psr-4": {
  2219. "think\\": "library/think"
  2220. }
  2221. },
  2222. "notification-url": "https://packagist.org/downloads/",
  2223. "license": [
  2224. "Apache-2.0"
  2225. ],
  2226. "authors": [
  2227. {
  2228. "name": "liu21st",
  2229. "email": "liu21st@gmail.com"
  2230. }
  2231. ],
  2232. "description": "the new thinkphp framework",
  2233. "homepage": "http://thinkphp.cn/",
  2234. "keywords": [
  2235. "framework",
  2236. "orm",
  2237. "thinkphp"
  2238. ],
  2239. "support": {
  2240. "issues": "https://github.com/top-think/framework/issues",
  2241. "source": "https://github.com/top-think/framework/tree/master"
  2242. },
  2243. "time": "2019-01-11T08:04:58+00:00"
  2244. },
  2245. {
  2246. "name": "topthink/think-helper",
  2247. "version": "v1.0.7",
  2248. "source": {
  2249. "type": "git",
  2250. "url": "https://github.com/top-think/think-helper.git",
  2251. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019"
  2252. },
  2253. "dist": {
  2254. "type": "zip",
  2255. "url": "https://api.github.com/repos/top-think/think-helper/zipball/5f92178606c8ce131d36b37a57c58eb71e55f019",
  2256. "reference": "5f92178606c8ce131d36b37a57c58eb71e55f019",
  2257. "shasum": "",
  2258. "mirrors": [
  2259. {
  2260. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2261. "preferred": true
  2262. }
  2263. ]
  2264. },
  2265. "type": "library",
  2266. "autoload": {
  2267. "psr-4": {
  2268. "think\\helper\\": "src"
  2269. },
  2270. "files": [
  2271. "src/helper.php"
  2272. ]
  2273. },
  2274. "notification-url": "https://packagist.org/downloads/",
  2275. "license": [
  2276. "Apache-2.0"
  2277. ],
  2278. "authors": [
  2279. {
  2280. "name": "yunwuxin",
  2281. "email": "448901948@qq.com"
  2282. }
  2283. ],
  2284. "description": "The ThinkPHP5 Helper Package",
  2285. "support": {
  2286. "issues": "https://github.com/top-think/think-helper/issues",
  2287. "source": "https://github.com/top-think/think-helper/tree/master"
  2288. },
  2289. "time": "2018-10-05T00:43:21+00:00"
  2290. },
  2291. {
  2292. "name": "topthink/think-image",
  2293. "version": "v1.0.7",
  2294. "source": {
  2295. "type": "git",
  2296. "url": "https://github.com/top-think/think-image.git",
  2297. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512"
  2298. },
  2299. "dist": {
  2300. "type": "zip",
  2301. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  2302. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  2303. "shasum": "",
  2304. "mirrors": [
  2305. {
  2306. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2307. "preferred": true
  2308. }
  2309. ]
  2310. },
  2311. "require": {
  2312. "ext-gd": "*"
  2313. },
  2314. "require-dev": {
  2315. "phpunit/phpunit": "4.8.*",
  2316. "topthink/framework": "^5.0"
  2317. },
  2318. "type": "library",
  2319. "autoload": {
  2320. "psr-4": {
  2321. "think\\": "src"
  2322. }
  2323. },
  2324. "notification-url": "https://packagist.org/downloads/",
  2325. "license": [
  2326. "Apache-2.0"
  2327. ],
  2328. "authors": [
  2329. {
  2330. "name": "yunwuxin",
  2331. "email": "448901948@qq.com"
  2332. }
  2333. ],
  2334. "description": "The ThinkPHP5 Image Package",
  2335. "support": {
  2336. "issues": "https://github.com/top-think/think-image/issues",
  2337. "source": "https://github.com/top-think/think-image/tree/master"
  2338. },
  2339. "time": "2016-09-29T06:05:43+00:00"
  2340. },
  2341. {
  2342. "name": "topthink/think-installer",
  2343. "version": "v1.0.14",
  2344. "source": {
  2345. "type": "git",
  2346. "url": "https://github.com/top-think/think-installer.git",
  2347. "reference": "eae1740ac264a55c06134b6685dfb9f837d004d1"
  2348. },
  2349. "dist": {
  2350. "type": "zip",
  2351. "url": "https://api.github.com/repos/top-think/think-installer/zipball/eae1740ac264a55c06134b6685dfb9f837d004d1",
  2352. "reference": "eae1740ac264a55c06134b6685dfb9f837d004d1",
  2353. "shasum": "",
  2354. "mirrors": [
  2355. {
  2356. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2357. "preferred": true
  2358. }
  2359. ]
  2360. },
  2361. "require": {
  2362. "composer-plugin-api": "^1.0||^2.0"
  2363. },
  2364. "require-dev": {
  2365. "composer/composer": "^1.0||^2.0"
  2366. },
  2367. "type": "composer-plugin",
  2368. "extra": {
  2369. "class": "think\\composer\\Plugin"
  2370. },
  2371. "autoload": {
  2372. "psr-4": {
  2373. "think\\composer\\": "src"
  2374. }
  2375. },
  2376. "notification-url": "https://packagist.org/downloads/",
  2377. "license": [
  2378. "Apache-2.0"
  2379. ],
  2380. "authors": [
  2381. {
  2382. "name": "yunwuxin",
  2383. "email": "448901948@qq.com"
  2384. }
  2385. ],
  2386. "support": {
  2387. "issues": "https://github.com/top-think/think-installer/issues",
  2388. "source": "https://github.com/top-think/think-installer/tree/v1.0.14"
  2389. },
  2390. "time": "2021-03-25T08:34:02+00:00"
  2391. },
  2392. {
  2393. "name": "topthink/think-migration",
  2394. "version": "v1.1.1",
  2395. "source": {
  2396. "type": "git",
  2397. "url": "https://github.com/top-think/think-migration.git",
  2398. "reference": "8e489f8d38a39876690c0e00fcf9a54ae92c4d3d"
  2399. },
  2400. "dist": {
  2401. "type": "zip",
  2402. "url": "https://api.github.com/repos/top-think/think-migration/zipball/8e489f8d38a39876690c0e00fcf9a54ae92c4d3d",
  2403. "reference": "8e489f8d38a39876690c0e00fcf9a54ae92c4d3d",
  2404. "shasum": "",
  2405. "mirrors": [
  2406. {
  2407. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2408. "preferred": true
  2409. }
  2410. ]
  2411. },
  2412. "require-dev": {
  2413. "topthink/framework": "^5.0"
  2414. },
  2415. "type": "library",
  2416. "autoload": {
  2417. "psr-4": {
  2418. "Phinx\\": "phinx/src/Phinx",
  2419. "think\\migration\\": "src"
  2420. },
  2421. "files": [
  2422. "src/config.php"
  2423. ]
  2424. },
  2425. "notification-url": "https://packagist.org/downloads/",
  2426. "license": [
  2427. "Apache-2.0"
  2428. ],
  2429. "authors": [
  2430. {
  2431. "name": "yunwuxin",
  2432. "email": "448901948@qq.com"
  2433. }
  2434. ],
  2435. "support": {
  2436. "issues": "https://github.com/top-think/think-migration/issues",
  2437. "source": "https://github.com/top-think/think-migration/tree/master"
  2438. },
  2439. "time": "2017-03-31T06:33:23+00:00"
  2440. },
  2441. {
  2442. "name": "topthink/think-mongo",
  2443. "version": "v1.8.5",
  2444. "source": {
  2445. "type": "git",
  2446. "url": "https://github.com/top-think/think-mongo.git",
  2447. "reference": "657cc79bd5f090a58b0cc83776073dd69c83a3d1"
  2448. },
  2449. "dist": {
  2450. "type": "zip",
  2451. "url": "https://api.github.com/repos/top-think/think-mongo/zipball/657cc79bd5f090a58b0cc83776073dd69c83a3d1",
  2452. "reference": "657cc79bd5f090a58b0cc83776073dd69c83a3d1",
  2453. "shasum": "",
  2454. "mirrors": [
  2455. {
  2456. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2457. "preferred": true
  2458. }
  2459. ]
  2460. },
  2461. "type": "library",
  2462. "autoload": {
  2463. "psr-4": {
  2464. "think\\mongo\\": "src"
  2465. },
  2466. "files": []
  2467. },
  2468. "notification-url": "https://packagist.org/downloads/",
  2469. "license": [
  2470. "Apache-2.0"
  2471. ],
  2472. "authors": [
  2473. {
  2474. "name": "liu21st",
  2475. "email": "liu21st@gmail.com"
  2476. }
  2477. ],
  2478. "description": "mongodb driver for thinkphp5",
  2479. "support": {
  2480. "issues": "https://github.com/top-think/think-mongo/issues",
  2481. "source": "https://github.com/top-think/think-mongo/tree/master"
  2482. },
  2483. "time": "2018-06-03T01:51:27+00:00"
  2484. },
  2485. {
  2486. "name": "topthink/think-queue",
  2487. "version": "v1.1.6",
  2488. "source": {
  2489. "type": "git",
  2490. "url": "https://github.com/top-think/think-queue.git",
  2491. "reference": "250650eb0e8ea5af4cfdc7ae46f3f4e0a24ac245"
  2492. },
  2493. "dist": {
  2494. "type": "zip",
  2495. "url": "https://api.github.com/repos/top-think/think-queue/zipball/250650eb0e8ea5af4cfdc7ae46f3f4e0a24ac245",
  2496. "reference": "250650eb0e8ea5af4cfdc7ae46f3f4e0a24ac245",
  2497. "shasum": "",
  2498. "mirrors": [
  2499. {
  2500. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2501. "preferred": true
  2502. }
  2503. ]
  2504. },
  2505. "require": {
  2506. "topthink/think-helper": ">=1.0.4",
  2507. "topthink/think-installer": ">=1.0.10"
  2508. },
  2509. "require-dev": {
  2510. "topthink/framework": "~5.0.0"
  2511. },
  2512. "type": "think-extend",
  2513. "extra": {
  2514. "think-config": {
  2515. "queue": "src/config.php"
  2516. }
  2517. },
  2518. "autoload": {
  2519. "psr-4": {
  2520. "think\\": "src"
  2521. },
  2522. "files": [
  2523. "src/common.php"
  2524. ]
  2525. },
  2526. "notification-url": "https://packagist.org/downloads/",
  2527. "license": [
  2528. "Apache-2.0"
  2529. ],
  2530. "authors": [
  2531. {
  2532. "name": "yunwuxin",
  2533. "email": "448901948@qq.com"
  2534. }
  2535. ],
  2536. "description": "The ThinkPHP5 Queue Package",
  2537. "support": {
  2538. "issues": "https://github.com/top-think/think-queue/issues",
  2539. "source": "https://github.com/top-think/think-queue/tree/master"
  2540. },
  2541. "time": "2018-10-15T10:16:55+00:00"
  2542. },
  2543. {
  2544. "name": "topthink/think-sae",
  2545. "version": "v1.1",
  2546. "source": {
  2547. "type": "git",
  2548. "url": "https://github.com/top-think/think-sae.git",
  2549. "reference": "e31ee4ec073c0ffc5dbc7292f8268661e5265091"
  2550. },
  2551. "dist": {
  2552. "type": "zip",
  2553. "url": "https://api.github.com/repos/top-think/think-sae/zipball/e31ee4ec073c0ffc5dbc7292f8268661e5265091",
  2554. "reference": "e31ee4ec073c0ffc5dbc7292f8268661e5265091",
  2555. "shasum": "",
  2556. "mirrors": [
  2557. {
  2558. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2559. "preferred": true
  2560. }
  2561. ]
  2562. },
  2563. "type": "library",
  2564. "autoload": {
  2565. "psr-4": {
  2566. "think\\sae\\": "src"
  2567. },
  2568. "files": []
  2569. },
  2570. "notification-url": "https://packagist.org/downloads/",
  2571. "license": [
  2572. "Apache-2.0"
  2573. ],
  2574. "authors": [
  2575. {
  2576. "name": "liu21st",
  2577. "email": "liu21st@gmail.com"
  2578. }
  2579. ],
  2580. "description": "sae support for thinkphp5",
  2581. "support": {
  2582. "issues": "https://github.com/top-think/think-sae/issues",
  2583. "source": "https://github.com/top-think/think-sae/tree/master"
  2584. },
  2585. "time": "2016-10-08T10:53:21+00:00"
  2586. },
  2587. {
  2588. "name": "topthink/think-testing",
  2589. "version": "v1.0.6",
  2590. "source": {
  2591. "type": "git",
  2592. "url": "https://github.com/top-think/think-testing.git",
  2593. "reference": "e89794e5c58aa5587f7b08038e9468150870b185"
  2594. },
  2595. "dist": {
  2596. "type": "zip",
  2597. "url": "https://api.github.com/repos/top-think/think-testing/zipball/e89794e5c58aa5587f7b08038e9468150870b185",
  2598. "reference": "e89794e5c58aa5587f7b08038e9468150870b185",
  2599. "shasum": "",
  2600. "mirrors": [
  2601. {
  2602. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2603. "preferred": true
  2604. }
  2605. ]
  2606. },
  2607. "require": {
  2608. "phpunit/phpunit": "^4.8.26",
  2609. "symfony/dom-crawler": "^2.8.8",
  2610. "topthink/think-helper": "~1.0",
  2611. "topthink/think-installer": "~1.0"
  2612. },
  2613. "type": "think-testing",
  2614. "autoload": {
  2615. "psr-4": {
  2616. "think\\testing\\": "src"
  2617. },
  2618. "files": [
  2619. "src/config.php"
  2620. ]
  2621. },
  2622. "notification-url": "https://packagist.org/downloads/",
  2623. "license": [
  2624. "Apache-2.0"
  2625. ],
  2626. "authors": [
  2627. {
  2628. "name": "yunwuxin",
  2629. "email": "448901948@qq.com"
  2630. }
  2631. ],
  2632. "support": {
  2633. "issues": "https://github.com/top-think/think-testing/issues",
  2634. "source": "https://github.com/top-think/think-testing/tree/master"
  2635. },
  2636. "time": "2016-08-08T09:43:56+00:00"
  2637. },
  2638. {
  2639. "name": "topthink/think-worker",
  2640. "version": "v1.0.0",
  2641. "source": {
  2642. "type": "git",
  2643. "url": "https://github.com/top-think/think-worker.git",
  2644. "reference": "f48ca8e5d8324aace15cdbf0f3de751397ef803f"
  2645. },
  2646. "dist": {
  2647. "type": "zip",
  2648. "url": "https://api.github.com/repos/top-think/think-worker/zipball/f48ca8e5d8324aace15cdbf0f3de751397ef803f",
  2649. "reference": "f48ca8e5d8324aace15cdbf0f3de751397ef803f",
  2650. "shasum": "",
  2651. "mirrors": [
  2652. {
  2653. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2654. "preferred": true
  2655. }
  2656. ]
  2657. },
  2658. "require": {
  2659. "workerman/workerman": "^3.3.0"
  2660. },
  2661. "type": "library",
  2662. "autoload": {
  2663. "psr-4": {
  2664. "think\\worker\\": "src"
  2665. },
  2666. "files": []
  2667. },
  2668. "notification-url": "https://packagist.org/downloads/",
  2669. "license": [
  2670. "Apache-2.0"
  2671. ],
  2672. "authors": [
  2673. {
  2674. "name": "liu21st",
  2675. "email": "liu21st@gmail.com"
  2676. }
  2677. ],
  2678. "description": "workerman extend for thinkphp5",
  2679. "support": {
  2680. "issues": "https://github.com/top-think/think-worker/issues",
  2681. "source": "https://github.com/top-think/think-worker/tree/v1.0.0"
  2682. },
  2683. "time": "2016-10-04T04:54:34+00:00"
  2684. },
  2685. {
  2686. "name": "webmozart/assert",
  2687. "version": "1.10.0",
  2688. "source": {
  2689. "type": "git",
  2690. "url": "https://github.com/webmozarts/assert.git",
  2691. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  2692. },
  2693. "dist": {
  2694. "type": "zip",
  2695. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  2696. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  2697. "shasum": "",
  2698. "mirrors": [
  2699. {
  2700. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2701. "preferred": true
  2702. }
  2703. ]
  2704. },
  2705. "require": {
  2706. "php": "^7.2 || ^8.0",
  2707. "symfony/polyfill-ctype": "^1.8"
  2708. },
  2709. "conflict": {
  2710. "phpstan/phpstan": "<0.12.20",
  2711. "vimeo/psalm": "<4.6.1 || 4.6.2"
  2712. },
  2713. "require-dev": {
  2714. "phpunit/phpunit": "^8.5.13"
  2715. },
  2716. "type": "library",
  2717. "extra": {
  2718. "branch-alias": {
  2719. "dev-master": "1.10-dev"
  2720. }
  2721. },
  2722. "autoload": {
  2723. "psr-4": {
  2724. "Webmozart\\Assert\\": "src/"
  2725. }
  2726. },
  2727. "notification-url": "https://packagist.org/downloads/",
  2728. "license": [
  2729. "MIT"
  2730. ],
  2731. "authors": [
  2732. {
  2733. "name": "Bernhard Schussek",
  2734. "email": "bschussek@gmail.com"
  2735. }
  2736. ],
  2737. "description": "Assertions to validate method input/output with nice error messages.",
  2738. "keywords": [
  2739. "assert",
  2740. "check",
  2741. "validate"
  2742. ],
  2743. "support": {
  2744. "issues": "https://github.com/webmozarts/assert/issues",
  2745. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  2746. },
  2747. "time": "2021-03-09T10:59:23+00:00"
  2748. },
  2749. {
  2750. "name": "workerman/workerman",
  2751. "version": "v3.5.31",
  2752. "source": {
  2753. "type": "git",
  2754. "url": "https://github.com/walkor/Workerman.git",
  2755. "reference": "b73ddc45b3c7299f330923a2bde23ca6e974fd96"
  2756. },
  2757. "dist": {
  2758. "type": "zip",
  2759. "url": "https://api.github.com/repos/walkor/Workerman/zipball/b73ddc45b3c7299f330923a2bde23ca6e974fd96",
  2760. "reference": "b73ddc45b3c7299f330923a2bde23ca6e974fd96",
  2761. "shasum": "",
  2762. "mirrors": [
  2763. {
  2764. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2765. "preferred": true
  2766. }
  2767. ]
  2768. },
  2769. "require": {
  2770. "php": ">=5.3"
  2771. },
  2772. "suggest": {
  2773. "ext-event": "For better performance. "
  2774. },
  2775. "type": "library",
  2776. "autoload": {
  2777. "psr-4": {
  2778. "Workerman\\": "./"
  2779. }
  2780. },
  2781. "notification-url": "https://packagist.org/downloads/",
  2782. "license": [
  2783. "MIT"
  2784. ],
  2785. "authors": [
  2786. {
  2787. "name": "walkor",
  2788. "email": "walkor@workerman.net",
  2789. "homepage": "http://www.workerman.net",
  2790. "role": "Developer"
  2791. }
  2792. ],
  2793. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  2794. "homepage": "http://www.workerman.net",
  2795. "keywords": [
  2796. "asynchronous",
  2797. "event-loop"
  2798. ],
  2799. "support": {
  2800. "email": "walkor@workerman.net",
  2801. "forum": "http://wenda.workerman.net/",
  2802. "issues": "https://github.com/walkor/workerman/issues",
  2803. "source": "https://github.com/walkor/workerman",
  2804. "wiki": "http://doc.workerman.net/"
  2805. },
  2806. "time": "2020-08-24T03:49:23+00:00"
  2807. },
  2808. {
  2809. "name": "zendframework/zend-escaper",
  2810. "version": "2.6.1",
  2811. "source": {
  2812. "type": "git",
  2813. "url": "https://github.com/zendframework/zend-escaper.git",
  2814. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f"
  2815. },
  2816. "dist": {
  2817. "type": "zip",
  2818. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  2819. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  2820. "shasum": "",
  2821. "mirrors": [
  2822. {
  2823. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2824. "preferred": true
  2825. }
  2826. ]
  2827. },
  2828. "require": {
  2829. "php": "^5.6 || ^7.0"
  2830. },
  2831. "require-dev": {
  2832. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  2833. "zendframework/zend-coding-standard": "~1.0.0"
  2834. },
  2835. "type": "library",
  2836. "extra": {
  2837. "branch-alias": {
  2838. "dev-master": "2.6.x-dev",
  2839. "dev-develop": "2.7.x-dev"
  2840. }
  2841. },
  2842. "autoload": {
  2843. "psr-4": {
  2844. "Zend\\Escaper\\": "src/"
  2845. }
  2846. },
  2847. "notification-url": "https://packagist.org/downloads/",
  2848. "license": [
  2849. "BSD-3-Clause"
  2850. ],
  2851. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  2852. "keywords": [
  2853. "ZendFramework",
  2854. "escaper",
  2855. "zf"
  2856. ],
  2857. "support": {
  2858. "chat": "https://zendframework-slack.herokuapp.com",
  2859. "docs": "https://docs.zendframework.com/zend-escaper/",
  2860. "forum": "https://discourse.zendframework.com/c/questions/components",
  2861. "issues": "https://github.com/zendframework/zend-escaper/issues",
  2862. "rss": "https://github.com/zendframework/zend-escaper/releases.atom",
  2863. "source": "https://github.com/zendframework/zend-escaper"
  2864. },
  2865. "abandoned": "laminas/laminas-escaper",
  2866. "time": "2019-09-05T20:03:20+00:00"
  2867. }
  2868. ],
  2869. "packages-dev": [],
  2870. "aliases": [],
  2871. "minimum-stability": "stable",
  2872. "stability-flags": [],
  2873. "prefer-stable": false,
  2874. "prefer-lowest": false,
  2875. "platform": {
  2876. "php": ">=7.0",
  2877. "ext-pdo": "*",
  2878. "ext-json": "*"
  2879. },
  2880. "platform-dev": [],
  2881. "plugin-api-version": "2.0.0"
  2882. }