Skip to content

Commit 45bcd2f

Browse files
committed
Adding file for github composer.lock, contributing.md
1 parent 8499373 commit 45bcd2f

3 files changed

Lines changed: 49 additions & 0 deletions

File tree

CHANGELOG.MD

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## [1.0.0] - 2026-02-02
6+
### Added
7+
- Initial release of Event Registration Module
8+
- Public event registration form
9+
- Admin event management
10+
- Email notifications
11+
- CSV export functionality
12+
- Comprehensive validation rules

CONTRIBUTING.MD

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Contributing to Event Registration Module
2+
3+
Thank you for considering contributing to this project!
4+
5+
## How to Contribute
6+
7+
1. Fork the repository
8+
2. Create a feature branch
9+
3. Make your changes
10+
4. Add tests if applicable
11+
5. Submit a pull request
12+
13+
## Code Standards
14+
15+
- Follow Drupal coding standards
16+
- Write clear commit messages
17+
- Include documentation for new features

composer.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "your-username/event-registration",
3+
"type": "drupal-module",
4+
"description": "Comprehensive event registration module for Drupal 10",
5+
"keywords": ["drupal", "event", "registration", "management"],
6+
"license": "GPL-2.0-or-later",
7+
"authors": [
8+
{
9+
"name": "Your Name",
10+
"email": "your.email@example.com",
11+
"role": "Maintainer"
12+
}
13+
],
14+
"require": {
15+
"php": "^8.1",
16+
"drupal/core": "^10.0"
17+
},
18+
"minimum-stability": "dev",
19+
"prefer-stable": true
20+
}

0 commit comments

Comments
 (0)