generated from biurad/php-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.13 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "biurad/annotations",
"description": "Library for managing all your PHP attributes/annotations with ease",
"keywords": ["biurad","biurad","php","annotations","phpdoc"],
"homepage": "https://biurad.com",
"license": "BSD-3-Clause",
"type": "library",
"authors": [
{
"name": "Divine Niiquaye Ibok",
"email": "[email protected]"
},
{
"name": "GitHub Contributors",
"homepage": "https://github.com/biurad/php-annotations/contributors"
}
],
"support": {
"docs": "https://docs.biurad.com/poakium/annotations"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.2 || ^8.0",
"symfony/polyfill-php80": "^1.22"
},
"require-dev": {
"doctrine/annotations": "^1.11",
"spiral/attributes": "^2.9 || ^3.0"
},
"autoload": {
"psr-4": {
"Biurad\\Annotations\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"suggest": {
"doctrine/annotations": "^1.8 for Doctrine metadata driver support",
"spiral/attributes": "For loading doctrine and/or PHP 8 attributes for PHP 7"
}
}