{"id":31853612,"url":"https://github.com/o/doctrine2.tmbundle","last_synced_at":"2026-02-18T00:31:20.154Z","repository":{"id":2227796,"uuid":"3179864","full_name":"o/Doctrine2.tmbundle","owner":"o","description":"Textmate bundle for creating entities with annotations for Doctrine 2 ","archived":false,"fork":false,"pushed_at":"2012-01-15T19:59:04.000Z","size":102,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-19T15:57:09.017Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/o.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-01-14T19:49:47.000Z","updated_at":"2015-09-15T17:21:06.000Z","dependencies_parsed_at":"2022-07-31T12:07:58.352Z","dependency_job_id":null,"html_url":"https://github.com/o/Doctrine2.tmbundle","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/o/Doctrine2.tmbundle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/o%2FDoctrine2.tmbundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/o%2FDoctrine2.tmbundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/o%2FDoctrine2.tmbundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/o%2FDoctrine2.tmbundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/o","download_url":"https://codeload.github.com/o/Doctrine2.tmbundle/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/o%2FDoctrine2.tmbundle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29563467,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T21:50:49.831Z","status":"ssl_error","status_checked_at":"2026-02-17T21:46:15.313Z","response_time":100,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-12T13:30:47.594Z","updated_at":"2026-02-18T00:31:20.118Z","avatar_url":"https://github.com/o.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"Doctrine2.tmbundle is a Textmate Bundle for writing lightning fast Doctrine 2 entities with annotations. It fully supports annotation format of Doctrine 2.2.\n\n###Supported snippets and tab triggers :\n\nEntity Template `template`\n\n    \u003c?php\n    namespace Entities;\n\n    /**\n     * @Entity\n     * @Table(name=\"table_name\")\n     */\n    class EntityName\n    {\n\n        /**\n         * @Id @Column(type=\"integer\")\n         * @GeneratedValue\n         */\n        private $id;\n    \n    \n    }\n\nColumn `column`\n\n    /**\n     * @Column(type=\"string|integer|smallint|bigint|boolean|decimal|date|time|datetime|text|object|array|float\", name=\"column_name\", length=255, unique=false, nullable=false, precision=0, scale=0, columnDefinition=\"definition\")\n     */\n    protected $field_name;\n    \n\nId `ìd`\n\n    /**\n     * @Id @Column(type=\"integer\")\n     * @GeneratedValue\n     */\n    private $id;\n    \nVersion `version`\n\n    /**\n     * @column(type=\"integer\")\n     * @version\n     */\n    protected $version;\n\nChange Tracking Policy `changetracking`\n\n    /**\n     * @ChangeTrackingPolicy(\"DEFERRED_IMPLICIT|DEFERRED_EXPLICIT|NOTIFY\")\n     *\n     */\n\nJoin Columns `joincol`\n\n    /**\n     * @JoinColumn(name=\"entity_id\", referencedColumnName=\"id\", unique=false, nullable=false, onDelete=\"cascade\", columnDefinition=\"definition\")\n     *\n     */\n\nJoin Table `jointable`\n\n    /**\n     * @JoinTable(name=\"table_name\", joinColumns={}, inverseJoinColumns={}) \n     *\n     */\n\nDiscriminator Column `discrcol`\n\n    /**\n     * @DiscriminatorColumn(name=\"column_name\", type=\"column_type\", length=255) \n     *\n     */\n\nMany To Many `manytomany`\n\n    /**\n     * @ManyToMany(targetEntity=\"EntityName\", inversedBy=\"inverse_side\", mappedBy=\"property_name\", cascade=\"cascade_option\", fetch=\"LAZY|EXTRA_LAZY|EAGER\", indexBy=\"field_name\") \n     *\n     */\n\nDiscriminator Map `discrmap`\n\n    /**\n     * @DiscriminatorMap({\"value\" = \"Class\"}) \n     *\n     */\n\nMany To One `manytoone`\n\n    /**\n     * @ManyToOne(targetEntity=\"EntityName\", cascade={\"cascade_option\"}, fetch=\"EAGER|LAZY\", inversedBy=\"inverse_side\")\n     *\n     */\n\nMapped Superclass `super`\n\n    /**\n     * @MappedSuperclass(repositoryClass=\"Namespace\\Repository\") \n     *\n     */\n\nEntity `entity`\n\n    /**\n     * @Entity(repositoryClass=\"Namespace\\Repository\", readOnly=false)\n     *\n     */\n\nOne To Many `onetomany`\n\n    /**\n     * @OneToMany(targetEntity=\"EntityName\", cascade={\"cascade_option\"}, fetch=\"LAZY|EXTRA_LAZY|EAGER\", mappedBy=\"entity\", orphanRemoval=false, indexBy=\"field\") \n     *\n     */\n\nGenerated Value `generated`\n\n    /**\n     * @generatedValue(strategy=\"AUTO|SEQUENCE|IDENTITY|TABLE|NONE\") \n     *\n     */\n  \nOne To One `onetoone`\n\n    /**\n     * @OneToOne(targetEntity=\"EntityName\", cascade={\"cascade_option\"}, fetch=\"EAGER|LAZY\", inversedBy=\"inverse_side\", orphanRemoval=false) \n     *\n     */\n\nHas Lifecycle Callbacks `hascallbacks`\n\n    /**\n     * @HasLifecycleCallbacks \n     *\n     */\n\nOrder By `orderby`\n\n    /**\n     * @OrderBy({\"field\" = \"ASC|DESC\"})\n     *\n     */\n\nSequence Generator `sequence`\n\n    /**\n     * @SequenceGenerator(sequenceName=\"tablename_seq\", initialValue=1, allocationSize=100)\n     *\n     */\n\nIndex `index`\n\n    /**\n     * @index(name=\"index_name\", columns={\"column_name\"})\n     *\n     */\n\nTable `table`\n\n    /**\n     * @Table(name=\"table_name\", uniqueConstraints={}, indexes={})\n     *\n     */\n\nInheritance Type `inheritance`\n\n    /**\n     * @InheritanceType(\"SINGLE_TABLE|JOINED\")\n     *\n     */\n\nUnique Constraint `unique`\n\n    /**\n     * @UniqueConstraint(name=\"index_name\", columns={\"column_name\"})\n     *\n     */\n\nJoin Column `joincol`\n\n    /**\n     * @JoinColumn(name=\"entity_id\", referencedColumnName=\"id\", unique=false, nullable=false, onDelete=\"cascade\", columnDefinition=\"definition\")\n     *\n     */","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fo%2Fdoctrine2.tmbundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fo%2Fdoctrine2.tmbundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fo%2Fdoctrine2.tmbundle/lists"}