Skip to content

Commit b30af55

Browse files
Fix tests
1 parent 05e41d7 commit b30af55

12 files changed

+240
-229
lines changed

composer.json

+54-53
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,57 @@
11
{
2-
"name": "reconmap/rest-api",
3-
"description": "Reconmap REST API",
4-
"license": "Apache-2.0",
5-
"minimum-stability": "stable",
6-
"prefer-stable": true,
7-
"require": {
8-
"ext-curl": "*",
9-
"ext-dom": "*",
10-
"ext-gd": "*",
11-
"ext-intl": "*",
12-
"ext-json": "*",
13-
"ext-mbstring": "*",
14-
"ext-mysqli": "*",
15-
"ext-mysqlnd": "*",
16-
"ext-redis": "*",
17-
"ext-simplexml": "*",
18-
"ext-zip": "*",
19-
"firebase/php-jwt": "^v6.0",
20-
"geoip2/geoip2": "~3.0",
21-
"graylog2/gelf-php": "dev-master",
22-
"guzzlehttp/guzzle": "^7.2",
23-
"guzzlehttp/psr7": "^2.1",
24-
"league/commonmark": "^2.0",
25-
"league/html-to-markdown": "^5.0",
26-
"league/route": "^5.0",
27-
"monolog/monolog": "^3.0",
28-
"netresearch/jsonmapper": "^5.0",
29-
"php": "^8.3",
30-
"phpoffice/phpword": "^1.0",
31-
"ponup/sql-builders": "^1.0",
32-
"reconmap/command-output-parsers": "^2.0",
33-
"symfony/config": "^7.1",
34-
"symfony/console": "^7",
35-
"symfony/dependency-injection": "^7.1",
36-
"symfony/filesystem": "^7",
37-
"symfony/http-foundation": "^7.1",
38-
"symfony/mailer": "^7",
39-
"symfony/psr-http-message-bridge": "^7.1",
40-
"twig/twig": "^3.0",
41-
"zircote/swagger-php": "^4.7"
42-
},
43-
"autoload": {
44-
"psr-4": {
45-
"Reconmap\\": "src/"
2+
"type": "project",
3+
"name": "reconmap/rest-api",
4+
"description": "Reconmap REST API",
5+
"license": "Apache-2.0",
6+
"minimum-stability": "stable",
7+
"prefer-stable": true,
8+
"require": {
9+
"ext-curl": "*",
10+
"ext-dom": "*",
11+
"ext-gd": "*",
12+
"ext-intl": "*",
13+
"ext-json": "*",
14+
"ext-mbstring": "*",
15+
"ext-mysqli": "*",
16+
"ext-mysqlnd": "*",
17+
"ext-redis": "*",
18+
"ext-simplexml": "*",
19+
"ext-zip": "*",
20+
"firebase/php-jwt": "^v6.0",
21+
"geoip2/geoip2": "~3.0",
22+
"graylog2/gelf-php": "dev-master",
23+
"guzzlehttp/guzzle": "^7.2",
24+
"guzzlehttp/psr7": "^2.1",
25+
"league/commonmark": "^2.0",
26+
"league/html-to-markdown": "^5.0",
27+
"league/route": "^5.0",
28+
"monolog/monolog": "^3.0",
29+
"netresearch/jsonmapper": "^5.0",
30+
"php": "^8.3",
31+
"phpoffice/phpword": "^1.0",
32+
"ponup/sql-builders": "^1.0",
33+
"reconmap/command-output-parsers": "^2.0",
34+
"symfony/config": "^7.1",
35+
"symfony/console": "^7",
36+
"symfony/dependency-injection": "^7.1",
37+
"symfony/filesystem": "^7",
38+
"symfony/http-foundation": "^7.1",
39+
"symfony/mailer": "^7",
40+
"symfony/psr-http-message-bridge": "^7.1",
41+
"twig/twig": "^3.0",
42+
"zircote/swagger-php": "^4.7"
43+
},
44+
"autoload": {
45+
"psr-4": {
46+
"Reconmap\\": "src/"
47+
}
48+
},
49+
"require-dev": {
50+
"phpunit/phpunit": "^11"
51+
},
52+
"autoload-dev": {
53+
"psr-4": {
54+
"Reconmap\\": "tests/"
55+
}
4656
}
47-
},
48-
"require-dev": {
49-
"phpunit/phpunit": "^11"
50-
},
51-
"autoload-dev": {
52-
"psr-4": {
53-
"Reconmap\\": "tests/"
54-
}
55-
}
5657
}

0 commit comments

Comments
 (0)