Skip to content

Commit 329c103

Browse files
authored
Merge pull request #5 from contentstack/php8-support-enum-library
Changed php enum version for php 8 support
2 parents 508836c + b7ded75 commit 329c103

6 files changed

Lines changed: 1913 additions & 16 deletions

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
build
2-
composer.lock
32
vendor
43
phpcs.xml
54
.phpunit.result.cache

.talismanrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
fileignoreconfig:
2+
- filename: composer.lock
3+
checksum: 3e19a34da8e50af426a1b648f3fb067592c3df08274fa553b7204fd4d326e1df
24
- filename: README.md
35
allowed_patterns: [API_KEY, DELIVERY_TOKEN, ENVIRONMENT, Contentstack::]

SECURITY.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
## Security
2+
3+
Contentstack takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations.
4+
5+
If you believe you have found a security vulnerability in any Contentstack-owned repository, please report it to us as described below.
6+
7+
## Reporting Security Issues
8+
9+
**Please do not report security vulnerabilities through public GitHub issues.**
10+
11+
Send email to [security@contentstack.com](mailto:security@contentstack.com).
12+
13+
You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message.
14+
15+
Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue:
16+
17+
* Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.)
18+
* Full paths of source file(s) related to the manifestation of the issue
19+
* The location of the affected source code (tag/branch/commit or direct URL)
20+
* Any special configuration required to reproduce the issue
21+
* Step-by-step instructions to reproduce the issue
22+
* Proof-of-concept or exploit code (if possible)
23+
* Impact of the issue, including how an attacker might exploit the issue
24+
25+
This information will help us triage your report more quickly.
26+
27+
[https://www.contentstack.com/trust/](https://www.contentstack.com/trust/)

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
],
2424
"require": {
2525
"php": ">=7.2",
26-
"marc-mabe/php-enum": "^4.4"
26+
"marc-mabe/php-enum": "^4.7.0"
2727
},
2828
"require-dev": {
29-
"phpunit/phpunit": "^9.0",
30-
"phpunit/php-code-coverage": "^8.0",
29+
"phpunit/phpunit": "^9.3",
30+
"phpunit/php-code-coverage": "^9.0",
3131
"squizlabs/php_codesniffer": "^3.0"
3232
},
3333
"autoload": {

0 commit comments

Comments
 (0)