forked from indigophp/doctrine-annotation-autoload
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Forked from indigophp/doctrine-annotation-autoload.
- Loading branch information
Showing
6 changed files
with
60 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
.idea | ||
|
||
build/ | ||
vendor/ | ||
composer.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,38 @@ | ||
{ | ||
"name": "indigophp/doctrine-annotation-autoload", | ||
"name": "yogarine/doctrine-annotation-autoload", | ||
"type": "composer-plugin", | ||
"description": "Hooks into Composer autoload generation and adds Doctrine annotation autoloading", | ||
"license": "MIT", | ||
"keywords": ["doctrine", "annotation", "autoload"], | ||
"homepage": "https://indigophp.com", | ||
"authors": [ | ||
{ | ||
"name": "Márk Sági-Kazár", | ||
"email": "mark.sagikazar@gmail.com" | ||
}, | ||
{ | ||
"name": "Alwin Garside", | ||
"email": "alwin@garsi.de" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.4", | ||
"composer-plugin-api": "^1.0", | ||
"php": ">=5.3.2", | ||
"composer-plugin-api": "^1.0 || ^2.0", | ||
"doctrine/annotations": "*" | ||
}, | ||
"require-dev": { | ||
"composer/composer": "^1.0 || ^2.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Indigo\\Composer\\": "src/" | ||
"Yogarine\\Composer\\": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"class": "Indigo\\Composer\\DoctrineAnnotationAutoloadPlugin", | ||
"class": "Yogarine\\Composer\\DoctrineAnnotationAutoloadPlugin", | ||
"branch-alias": { | ||
"dev-master": "0.2-dev" | ||
"dev-master": "0.4-dev" | ||
} | ||
}, | ||
"prefer-stable": true, | ||
"minimum-stability": "dev" | ||
"minimum-stability": "stable" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters