-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
77 lines (77 loc) · 2.05 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
76
77
{
"name": "aphiria/api",
"description": "The Aphiria API library",
"keywords": [
"PHP",
"API",
"controller"
],
"authors": [
{
"name": "David Young",
"email": "[email protected]",
"role": "Architect"
}
],
"homepage": "https://www.aphiria.com",
"license": "MIT",
"support": {
"docs": "https://www.aphiria.com/docs/1.x/introduction.html",
"forum": "https://github.com/aphiria/aphiria/discussions",
"issues": "https://github.com/aphiria/aphiria/issues",
"source": "https://github.com/aphiria/aphiria"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/davidbyoung"
}
],
"autoload": {
"psr-4": {
"Aphiria\\Api\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Aphiria\\Api\\Tests\\": "tests"
}
},
"require": {
"aphiria/authentication": "1.x-dev",
"aphiria/content-negotiation": "1.x-dev",
"aphiria/dependency-injection": "1.x-dev",
"aphiria/middleware": "1.x-dev",
"aphiria/router": "1.x-dev",
"aphiria/validation": "1.x-dev",
"monolog/monolog": "~2.1",
"php": "^8.2",
"psr/log": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.5",
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^10.1"
},
"scripts": {
"phpcs-test": "@phpcs-fix --dry-run",
"phpcs-fix": "php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --diff",
"phpunit": "php vendor/phpunit/phpunit/phpunit --coverage-clover ./.coverage/clover.xml",
"test": [
"@phpunit",
"@phpcs-test"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "dev"
}