3.2.3 • Published 4 months ago

gatsby-source-packagist v3.2.3

Weekly downloads
2
License
MIT
Repository
github
Last release
4 months ago

gatsby-source-packagist

Integrate Packagist (PHP package repository) with the Gatsby GraphQL data layer. Configure your search query in the plugin config and access the results in GraphQL!

Config

{
  resolve: 'gatsby-source-packagist',
  options: {
    query: {
      // See API client docs for search params:
      // https://moonmeister.github.io/packagist-api-client/modules/_search_.html#search
      name: 'wp-graphql'
    },
    // This object is passed to the Github Rest API client when it's created.
    // More Info: https://octokit.github.io/rest.js/v17#usage
    githubApi: {
      auth: 'GitHubToken'
    }
  }
}

Data

Access the data via 'packagistPackage' and 'allPackagistPackage' graphql data types.

Example query:

{
  allPackagistPackage {
    totalCount
    nodes {
      name
      description
      url
      repository
      downloads
      favers
      readmeFile {
        # here you can access the Repositories Readme file.
        # Currently only github repositories are supported
        # if you have a markdown transformer installed that
        # should make `childMarkdownRemark` available to embed in your site.
      }
    }
  }
}
3.2.2

4 months ago

3.2.3

4 months ago

3.2.1

8 months ago

3.2.0

10 months ago

3.1.4

1 year ago

3.1.3

1 year ago

3.1.2

1 year ago

3.1.1

1 year ago

3.1.0

1 year ago

3.0.0

1 year ago

2.0.3

1 year ago

2.0.2

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

1.1.5

2 years ago

1.1.4

2 years ago

1.1.3

2 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.1

4 years ago

1.0.0

4 years ago