-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.02 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": "bytic/actions",
"description": "Actions utility for Bytic Framework",
"license": "MIT",
"type": "library",
"keywords": [],
"authors": [
{
"name": "Gabriel Solomon",
"email": "hello@gabrielsolomon.ro"
}
],
"homepage": "https://github.com/bytic/actions",
"require": {
"php": ">=8.1",
"bytic/utility": "^0.9 || ^1.0"
},
"require-dev": {
"bytic/cache": "^1.0|^2.0",
"bytic/orm": "^1.0|^2.0",
"bytic/phpqatools": "^1.0",
"symfony/console": "^5.0|^6.0|^7.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Bytic\\Actions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bytic\\Actions\\Tests\\Fixtures\\": "tests/fixtures",
"Bytic\\Actions\\Tests\\": "tests/src"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"bytic/phpqatools": true
}
}
}