2017 © Pedro Peláez
 

library articles

Package for articles

image

inetstudio/articles

Package for articles

  • Sunday, July 29, 2018
  • by inetstudio
  • Repository
  • 1 Watchers
  • 0 Stars
  • 621 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 100 Versions
  • 15 % Grown

The README.md

Elasticsearch

curl -X PUT "localhost:9200/app_index_articles" -H 'Content-Type: application/json' -d'
{
   "mappings":{
      "properties":{
          "type": {
             "type":"keyword"
          },            
          "id":{
             "type":"integer"
          },
          "is_published": {
             "type":"boolean"
          },
          "classifiers": {
            "type":"integer"
          },            
          "title":{
             "type":"text"
          },
          "description":{
             "type":"text"
          },
          "content":{
             "type":"text"
          },
          "publish_date": {
             "type":"date"
          },
          "tags":{
             "type":"nested"
          },
          "products":{
             "type":"nested"
          },
          "ingredients":{
             "type":"nested"
          }            
       } 
   }
}
'

The Versions