Composer.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. declare(strict_types=1);
  3. // +----------------------------------------------------------------------
  4. // | CatchAdmin [Just Like ~ ]
  5. // +----------------------------------------------------------------------
  6. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  7. // +----------------------------------------------------------------------
  8. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  9. // +----------------------------------------------------------------------
  10. // | Author: JaguarJack [ njphper@gmail.com ]
  11. // +----------------------------------------------------------------------
  12. namespace catcher\library;
  13. use catcher\facade\FileSystem;
  14. class Composer
  15. {
  16. /**
  17. * psr4
  18. *
  19. * @time 2020年11月19日
  20. * @return mixed
  21. */
  22. public function psr4Autoload()
  23. {
  24. return $this->content()['autoload']['psr-4'];
  25. }
  26. /**
  27. * require
  28. *
  29. * @time 2020年11月19日
  30. * @return mixed
  31. */
  32. public function requires()
  33. {
  34. return $this->content()['require'];
  35. }
  36. /**
  37. * require dev
  38. *
  39. * @time 2020年11月19日
  40. * @return mixed
  41. */
  42. public function requireDev()
  43. {
  44. return $this->content()['require-dev'];
  45. }
  46. /**
  47. * composer has package
  48. *
  49. * @time 2020年11月19日
  50. * @param $name
  51. * @return bool
  52. */
  53. public function hasPackage($name)
  54. {
  55. $packages = array_merge($this->requires(), $this->requireDev());
  56. return in_array($name, array_keys($packages));
  57. }
  58. /**
  59. * composer content
  60. *
  61. * @time 2020年11月19日
  62. * @return mixed
  63. */
  64. protected function content()
  65. {
  66. return \json_decode(FileSystem::sharedGet($this->path()), true);
  67. }
  68. /**
  69. * composer path
  70. *
  71. * @time 2020年11月19日
  72. * @return string
  73. */
  74. protected function path()
  75. {
  76. return root_path() . 'composer.json';
  77. }
  78. }