Skip to content

Commit 5f4111e

Browse files
committed
Add initial state
0 parents  commit 5f4111e

6 files changed

Lines changed: 1880 additions & 0 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/vendor/
2+
/build/

composer.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "phpwatch/php-keyword-enhancer",
3+
"type": "library",
4+
"require": {
5+
"php": "^8.2"
6+
},
7+
"require-dev": {
8+
"phpunit/phpunit": "^10.3"
9+
},
10+
"license": "MIT",
11+
"autoload": {
12+
"psr-4": {
13+
"PHPWatch\\PhpKeywordEnhancer\\": "src/"
14+
}
15+
},
16+
"autoload-dev": {
17+
"psr-4": {
18+
"PHPWatch\\PhpKeywordEnhancer\\Tests\\": "tests/"
19+
}
20+
},
21+
"authors": [
22+
{
23+
"name": "Ayesh Karunaratne",
24+
"email": "ayesh@aye.sh"
25+
}
26+
]
27+
}

0 commit comments

Comments
 (0)