Skip to content

Commit 9e8f4fc

Browse files
add test composer.json files
1 parent a716771 commit 9e8f4fc

File tree

2 files changed

+132
-0
lines changed

2 files changed

+132
-0
lines changed
+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"name": "propel/propel",
3+
"type": "library",
4+
"description": "Propel2 is an open-source Object-Relational Mapping (ORM) for PHP 5.5 and up.",
5+
"keywords": [
6+
"ORM",
7+
"persistence",
8+
"Active Record"
9+
],
10+
"homepage": "http://www.propelorm.org/",
11+
"license": "MIT",
12+
"authors": [
13+
{
14+
"name": "William Durand",
15+
"email": "[email protected]"
16+
}
17+
],
18+
"require": {
19+
"php": ">=8.2",
20+
"symfony/yaml": "^7.0.0",
21+
"symfony/config": "^7.0.0",
22+
"symfony/console": "^7.0.0",
23+
"symfony/filesystem": "^7.0.0",
24+
"symfony/finder": "^7.0.0",
25+
"symfony/translation": "^7.0.0",
26+
"symfony/validator": "^7.0.0",
27+
"psr/log": "^1.0 || ^2.0 || ^3.0"
28+
},
29+
"require-dev": {
30+
"ext-pdo": "*",
31+
"ext-json": "*",
32+
"ext-xml": "*",
33+
"monolog/monolog": "^1.3 || ^2.3 || ^3.0",
34+
"phpstan/phpstan": "^1.2",
35+
"phpunit/phpunit": "^9.5.0",
36+
"spryker/code-sniffer": "^0.17.2",
37+
"psalm/phar": "^4.23",
38+
"mikey179/vfsstream": "^1.6"
39+
},
40+
"suggest": {
41+
"monolog/monolog": "The recommended logging library to use with Propel."
42+
},
43+
"autoload": {
44+
"psr-4": {
45+
"Propel\\": "src/Propel/"
46+
}
47+
},
48+
"bin": [
49+
"bin/propel"
50+
],
51+
"scripts": {
52+
"stan": [
53+
"vendor/bin/phpstan analyze -l 1 -c tests/phpstan.neon src/"
54+
]
55+
},
56+
"extra": {
57+
"branch-alias": {
58+
"dev-master": "2.0-dev"
59+
}
60+
},
61+
"config": {
62+
"allow-plugins": {
63+
"dealerdirect/phpcodesniffer-composer-installer": true
64+
}
65+
}
66+
}
+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"name": "propel/propel",
3+
"type": "library",
4+
"description": "Propel2 is an open-source Object-Relational Mapping (ORM) for PHP 5.5 and up.",
5+
"keywords": [
6+
"ORM",
7+
"persistence",
8+
"Active Record"
9+
],
10+
"homepage": "http://www.propelorm.org/",
11+
"license": "MIT",
12+
"authors": [
13+
{
14+
"name": "William Durand",
15+
"email": "[email protected]"
16+
}
17+
],
18+
"require": {
19+
"php": ">=8.2",
20+
"symfony/yaml": "~7.0.0",
21+
"symfony/config": "~7.0.0",
22+
"symfony/console": "~7.0.0",
23+
"symfony/filesystem": "~7.0.0",
24+
"symfony/finder": "~7.0.0",
25+
"symfony/translation": "~7.0.0",
26+
"symfony/validator": "~7.0.0",
27+
"psr/log": "^1.0 || ^2.0 || ^3.0"
28+
},
29+
"require-dev": {
30+
"ext-pdo": "*",
31+
"ext-json": "*",
32+
"ext-xml": "*",
33+
"monolog/monolog": "^1.3 || ^2.3 || ^3.0",
34+
"phpstan/phpstan": "^1.2",
35+
"phpunit/phpunit": "^9.5.0",
36+
"spryker/code-sniffer": "^0.17.2",
37+
"psalm/phar": "^4.23",
38+
"mikey179/vfsstream": "^1.6"
39+
},
40+
"suggest": {
41+
"monolog/monolog": "The recommended logging library to use with Propel."
42+
},
43+
"autoload": {
44+
"psr-4": {
45+
"Propel\\": "src/Propel/"
46+
}
47+
},
48+
"bin": [
49+
"bin/propel"
50+
],
51+
"scripts": {
52+
"stan": [
53+
"vendor/bin/phpstan analyze -l 1 -c tests/phpstan.neon src/"
54+
]
55+
},
56+
"extra": {
57+
"branch-alias": {
58+
"dev-master": "2.0-dev"
59+
}
60+
},
61+
"config": {
62+
"allow-plugins": {
63+
"dealerdirect/phpcodesniffer-composer-installer": true
64+
}
65+
}
66+
}

0 commit comments

Comments
 (0)