-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.58 KB
/
Copy pathcomposer.json
File metadata and controls
53 lines (53 loc) · 1.58 KB
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
{
"name": "gearsite/api",
"description": "JSON API for Doctrine ORM Based Projects",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Gearsite\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Gearsite\\Api\\": "src/"
}
},
"authors": [
{
"name": "GearSite Web Solutions"
}
],
"require": {
"php": "^8.2",
"doctrine/orm": "^3.0",
"doctrine/persistence": "^3.0 || ^4.0",
"psr/log": "^2.0 || ^3.0",
"symfony/dependency-injection": "^6.4 || ^7.0 || ^8.0",
"symfony/http-foundation": "^6.4 || ^7.0 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.0 || ^8.0",
"symfony/security-bundle": "^6.4 || ^7.0 || ^8.0",
"symfony/stopwatch": "^6.4 || ^7.0 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"symfony/console": "^6.4 || ^7.0 || ^8.0",
"symfony/maker-bundle": "^1.60"
},
"suggest": {
"symfony/maker-bundle": "Enables the make:api-serializer scaffolding command"
},
"scripts": {
"test": "phpunit --testsuite unit",
"test:integration": "phpunit --testsuite integration",
"test:all": "phpunit"
},
"scripts-descriptions": {
"test": "Runs the unit suite (no database required)",
"test:integration": "Runs the integration suite (requires MariaDB; see DB_* env vars)",
"test:all": "Runs both suites"
},
"minimum-stability": "stable",
"prefer-stable": true
}