Skip to content

Commit c659e10

Browse files
committed
Initial test and implementation.
1 parent db96f9d commit c659e10

11 files changed

+4708
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
vendor
3+
.idea

composer.json

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "randomstate/laravel-doctrine-entity-events",
3+
"description": "Easily hook in and fire native laravel events with laravel-doctrine",
4+
"type": "library",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Connor Imrie",
9+
"email": "[email protected]"
10+
}
11+
],
12+
"autoload": {
13+
"psr-4": {
14+
"RandomState\\LaravelDoctrineEntityEvents\\": "src/"
15+
}
16+
},
17+
"autoload-dev": {
18+
"psr-4": {
19+
"Tests\\": "vendor/laravel/laravel/tests",
20+
"RandomState\\LaravelDoctrineEntityEvents\\Tests\\": "tests/"
21+
}
22+
},
23+
"require": {
24+
"laravel-doctrine/orm": "~1.3"
25+
},
26+
"require-dev": {
27+
"laravel/laravel" : "5.5.*",
28+
"phpunit/phpunit": "^7.0"
29+
}
30+
}

0 commit comments

Comments
 (0)