Skip to content

Commit aff3f54

Browse files
committed
Added composer.json
1 parent d1238c2 commit aff3f54

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
# IDE's
22
.idea/
3+
4+
# Composer
5+
vendor/
6+
composer.lock

composer.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "okapi/code-transformer",
3+
"description": "PHP Code Transformer is a PHP library that allows you to modify and transform the source code of a loaded PHP class.",
4+
"version": "1.0.0",
5+
"type": "library",
6+
"homepage": "https://github.com/okapi-web/php-code-transformer",
7+
"license": "MIT",
8+
"authors": [
9+
{
10+
"name": "WalterWoshid",
11+
"email": "wotschel.valentin@googlemail.com",
12+
"homepage": "https://github.com/WalterWoshid"
13+
}
14+
],
15+
"keywords": [
16+
"code",
17+
"transformer",
18+
"php",
19+
"php-code"
20+
],
21+
"require": {
22+
"php": ">=8.1"
23+
},
24+
"autoload": {
25+
"psr-4": {
26+
"Okapi\\CodeTransformer\\": "src/"
27+
}
28+
}
29+
}

0 commit comments

Comments
 (0)