This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
generated from biurad/php-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 2.24 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "biurad/cycle-bridge",
"description": "Well-integrated Cycle ORM for Nette and Biurad Framework.",
"type": "library",
"keywords": ["biurad","biuradphp","php7"],
"homepage": "https://www.biurad.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Divine Niiquaye Ibok",
"email": "divineibok@gmail.com"
},
{
"name": "Biurad Lap Community",
"homepage": "https://biurad.com/projects/contributors"
}
],
"support": {
"docs": "https://docs.biurad.com/cycle-bridge/",
"issues": "https://github.com/biurad/cycle-bridge/issues",
"rss": "https://github.com/biurad/cycle-bridge/releases.atom",
"source": "https://github.com/biurad/cycle-bridge"
},
"require": {
"php": "^7.1 || ^8.0",
"biurad/dependency-injection": "1.x-dev",
"cycle/orm": "^1.2",
"psr/log": "^1.1"
},
"require-dev": {
"composer/package-versions-deprecated": "^1.11",
"cycle/annotated": "^2.0",
"cycle/migrations": "^1.0",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-strict-rules": "^0.12",
"phpunit/phpunit": "^8.5 || ^9.4",
"spiral/migrations": "^2.1",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^3.11 || ^4.0"
},
"suggest": {
"cycle/annotated": "To add Doctrine annotations support to Cycle ORM",
"cycle/migrations": "For Automated migrations on commands using Cycle ORM",
"spiral/migrations": "A Database migrations, migration scaffolding for Spiral Database"
},
"autoload": {
"psr-4": {
"Biurad\\Cycle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Biurad\\Cycle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"scripts": {
"phpcs": "phpcs -q",
"phpstan": "phpstan analyse",
"psalm": "psalm --show-info=true",
"phpunit": "phpunit --no-coverage",
"test": [
"@phpcs",
"@phpstan",
"@psalm",
"@phpunit"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}