Skip to content

Commit dc7065e

Browse files
authored
Merge pull request #12 from magento-commerce/revert-11-AC-3684
Revert "AC-3684 Release magento components with symfony 5.4 support"
2 parents d90a61e + 53c85c9 commit dc7065e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+38
-17
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ composer.lock export-ignore
33
build.xml export-ignore
44
.gitattributes export-ignore
55
.gitignore export-ignore
6-
/dev export-ignore
6+
/tests export-ignore
77
/doc export-ignore

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
/composer.phar
55
/composer.lock
66
/vendor
7-
/dev/tests/FullStackTest/logs
7+
/tests/FullStackTest/logs

build.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<project name="magento-composer-installer">
2+
<target name="phpdoc">
3+
<condition property="phpdoc" value="phpdoc.bat">
4+
<os family="windows" />
5+
</condition>
6+
<property name="phpdoc" value="phpdoc" />
7+
8+
<exec executable="${phpdoc}">
9+
<arg line="-d src -t doc --title=${ant.project.name}" />
10+
</exec>
11+
</target>
12+
13+
<target name="phpunit">
14+
<condition property="phpunit" value="vendor/bin/phpunit.bat">
15+
<os family="windows" />
16+
</condition>
17+
<property name="phpunit" value="vendor/bin/phpunit" />
18+
19+
<exec executable="${phpunit}" />
20+
</target>
21+
</project>

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"archive": {
6262
"exclude": [
6363
"vendor",
64-
"dev"
64+
"/tests/FullStackTest/"
6565
]
6666
},
6767
"extra": {

dev/tests/bootstrap.php

Lines changed: 0 additions & 5 deletions
This file was deleted.

phpunit.xml.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
convertWarningsToExceptions="true"
1010
processIsolation="false"
1111
stopOnFailure="false"
12-
bootstrap="dev/tests/bootstrap.php">
12+
bootstrap="tests/bootstrap.php">
1313
<coverage>
1414
<include>
1515
<directory>./src/</directory>
@@ -18,7 +18,7 @@
1818
</coverage>
1919
<testsuites>
2020
<testsuite name="Magentohackathon Magento Installer Test Suite">
21-
<directory>./dev/tests/MagentoHackathon</directory>
21+
<directory>./tests/MagentoHackathon</directory>
2222
</testsuite>
2323
</testsuites>
2424
<groups>
File renamed without changes.

0 commit comments

Comments
 (0)